/third_party/python/Modules/_ctypes/ |
H A D | cfield.c | 283 PyObject *result; in PyCField_repr() local 291 result = PyUnicode_FromFormat( in PyCField_repr() 295 result = PyUnicode_FromFormat( in PyCField_repr() 298 return result; in PyCField_repr() 1076 object, of course. If O_get is called from a function result, no py_object 1183 /* We need 'result' to be able to count the characters with wcslen, in U_get() 1186 away the result. in U_get()
|
/third_party/skia/third_party/externals/tint/src/reader/wgsl/ |
H A D | lexer.cc | 608 float result; in try_hex_float() local 609 std::memcpy(&result, &result_u32, sizeof(result)); in try_hex_float() 610 return {source, static_cast<float>(result)}; in try_hex_float()
|
/third_party/skia/third_party/externals/icu/source/common/ |
H A D | ucnv_bld.cpp | 387 int result; in getAlgorithmicTypeFromName() local 405 result = uprv_strcmp(strippedName, cnvNameType[mid].name); in getAlgorithmicTypeFromName() 407 if (result < 0) { in getAlgorithmicTypeFromName() 409 } else if (result > 0) { in getAlgorithmicTypeFromName() 1602 /* stage 3/result bytes: sometimes uint16_t[] or uint32_t[] */ in ucnv_swap()
|
/third_party/toybox/toys/pending/ |
H A D | diff.c | 531 char *result, *s, *t; in quote_filename() local 554 result = xmalloc(len + (quote ? 2 : 0) + 1); in quote_filename() 555 t = result; in quote_filename() 573 return result; in quote_filename()
|
/third_party/skia/third_party/externals/dawn/src/tests/white_box/ |
H A D | VulkanImageWrappingTestsOpaqueFD.cpp | 145 ::VkResult result = CreateImage(deviceVk, width, height, format, handle); in CreateBindExportImage() local 146 EXPECT_EQ(result, VK_SUCCESS) << "Failed to create external image"; in CreateBindExportImage() 152 result = BindMemory(deviceVk, *handle, allocation); in CreateBindExportImage() 153 EXPECT_EQ(result, VK_SUCCESS) << "Failed to bind image memory"; in CreateBindExportImage()
|
/third_party/python/Lib/test/ |
H A D | test_time.py | 264 result = time.strftime("%Y %m %d %H %M %S %w %j", (2000,)+(0,)*8) 265 self.assertEqual(expected, result) 858 result = pytime_converter(value, time_rnd) 862 self.assertEqual(result,
|
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/ |
H A D | str_split_test.cc | 639 std::vector<std::string> result = stack_splitter; in TEST() local 640 EXPECT_THAT(result, testing::ElementsAre("a", "b")); in TEST() 647 std::vector<std::string> result = stack_splitter; in TEST() local 648 EXPECT_THAT(result, testing::ElementsAre("a", "b")); in TEST()
|
/third_party/spirv-tools/source/fuzz/ |
H A D | fuzzer_pass_donate_modules.cpp | 108 // (1) by mapping a donor instruction's result id to the id of some equivalent in DonateSingleModule() 111 // (2) by mapping a donor instruction's result id to a freshly chosen id that in DonateSingleModule() 160 // A matching import has found. Map the result id for the donor import in HandleExternalInstructionImports() 190 // The type/value instruction generates a result id, and we need to associate in HandleTypeOrValue() 191 // the donor's result id with a new result id. That new result id will either in HandleTypeOrValue() 466 // module using a remapped result type. in HandleTypeOrValue() 484 // the result type. in HandleTypeOrValue() 529 // class, using remapped versions of the result typ in HandleTypeOrValue() 761 bool result = true; CanDonateInstruction() local [all...] |
/third_party/vk-gl-cts/modules/gles3/functional/ |
H A D | es3fShaderBuiltinVarTests.cpp | 121 shaderSpec.source = string("result = ") + varName + ";\n"; in createGetConstantExecutor() 122 shaderSpec.outputs.push_back(Symbol("result", glu::VarType(glu::TYPE_INT, glu::PRECISION_HIGHP))); in createGetConstantExecutor() 133 int result = -1; in iterate() local 134 void* const outputs = &result; in iterate() 145 m_testCtx.getLog() << TestLog::Integer(m_varName, m_varName, "", QP_KEY_TAG_NONE, result); in iterate() 147 if (result != reference) in iterate() 368 bool isOk = tcu::pixelThresholdCompare(log, "Result", "Image comparison result", refImg, testImg, threshold, tcu::COMPARE_LOG_RESULT); in iterate() 463 bool isOk = tcu::pixelThresholdCompare(log, "Result", "Image comparison result", refImg, testImg, threshold, tcu::COMPARE_LOG_RESULT); in iterate() 583 bool isOk = tcu::fuzzyCompare(log, "Result", "Image comparison result", refImg, testImg, threshold, tcu::COMPARE_LOG_RESULT); in iterate() 702 bool isOk = tcu::pixelThresholdCompare(log, "Result", "Image comparison result", refIm in iterate() [all...] |
H A D | es3fShaderPrecisionTests.cpp | 190 bool compare (float in0, float in1, double reference, float result); 266 // Initialize test result to pass. in init() 286 bool ShaderFloatPrecisionCase::compare (float in0, float in1, double reference, float result) in compare() argument 301 const int resExp = tcu::Float32(result).exponent(); in compare() 312 const deUint64 resBits = tcu::Float64(result).bits(); in compare() 384 log << TestLog::Message << " result = " << pixels[0] << " / " << tcu::toHex(tcu::Float32(pixels[0]).bits()) << TestLog::EndMessage; in iterate() 519 // Initialize test result to pass. in init() 713 // Initialize test result to pass. in init()
|
/third_party/vk-gl-cts/modules/gles31/functional/ |
H A D | es31fMultisampleTests.cpp | 63 std::string result(numBits, '0'); in sampleMaskToString() 74 return result; in sampleMaskToString() 77 result[targetCharNdx] = '1'; in sampleMaskToString() 81 return result; in sampleMaskToString()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/pipeline/ |
H A D | vktPipelineCreationFeedbackTests.cpp | 155 std::string result("Get pipeline creation feedback with " + getShaderFlagStr(m_shaders, true)); in generateTestDescription() 157 result += " with no cache"; in generateTestDescription() 159 result += " with delayed destroy"; in generateTestDescription() 161 return result; in generateTestDescription()
|
H A D | vktPipelineStencilTests.cpp | 837 // Compare result with reference image in verifyImage() 845 de::UniquePtr<tcu::TextureLevel> result (readColorAttachment(vk, vkDevice, queue, queueFamilyIndex, allocator, *m_colorImage, m_colorFormat, m_renderSize).release()); in verifyImage() 851 result->getAccess(), in verifyImage() 862 // Compare stencil result with reference image in verifyImage() 869 de::UniquePtr<tcu::TextureLevel> result (readStencilAttachment(vk, vkDevice, queue, queueFamilyIndex, allocator, *m_stencilImage, m_stencilFormat, m_renderSize).release()); in verifyImage() 877 result->getAccess(), in verifyImage()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/renderpass/ |
H A D | vktRenderPassDitheringTests.cpp | 248 const auto result = vki.getPhysicalDeviceImageFormatProperties(physDev, format, imgType, tiling, usage, 0u, &properties); in checkSupport() local 250 if (result != VK_SUCCESS) in checkSupport() 264 const auto result = vki.getPhysicalDeviceImageFormatProperties(physDev, m_testParams.depthStencilFormat, imgType, tiling, usage, 0u, &properties); in checkSupport() local 266 if (result != VK_SUCCESS) in checkSupport()
|
H A D | vktRenderPassUnusedClearAttachmentTests.cpp | 244 VkResult result; in checkFormatSupported() local 247 result = context.getInstanceInterface().getPhysicalDeviceImageFormatProperties( in checkFormatSupported() 250 if (result == VK_ERROR_FORMAT_NOT_SUPPORTED) in checkFormatSupported() 257 VK_CHECK(result); in checkFormatSupported() 1100 // Read result images. in iterate()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/ |
H A D | vktTestPackage.cpp | 573 const tcu::TestStatus result = m_instance->iterate(); in iterate() local 575 if (result.isComplete()) in iterate() 577 // Vulkan tests shouldn't set result directly except when using a debug report messenger to catch validation errors. in iterate() 580 // Override result if not set previously by a debug report messenger. in iterate() 582 m_context->getTestContext().setTestResult(result.getCode(), result.getDescription().c_str()); in iterate()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/common/ |
H A D | common_module_tests.c | 25 ParseRes result; member 101 if (res != test->result || in ieee802_11_parse_tests() 152 int result; member 216 test->result) { in rsn_ie_parse_tests()
|
/foundation/ability/ability_runtime/interfaces/kits/native/ability/native/ |
H A D | ability_thread.h | 155 * @brief Send the result code and data to be returned by this Page ability to the caller. 157 * receive the result set in the current method. This method can be called only after the ability has been 160 * @param resultCode Indicates the result code returned after the ability is destroyed. You can define the result 212 * @return Returns the call result. 240 * @return Returns the query result. 279 * @brief notify this ability continuation result. 280 * @param result: Continuation result 282 void NotifyContinuationResult(int32_t result) overrid [all...] |
H A D | ability_impl.h | 112 * @brief Send the result code and data to be returned by this Page ability to the caller. 114 * method to receive the result set in the current method. This method can be called only after the ability has 118 * @param resultCode Indicates the result code returned after the ability is destroyed. You can define the 119 * result code to identify an error. 215 * @return Returns the query result. 317 * @brief Notify continuation result to ability. 319 * @param result Continuaton result. 323 virtual void NotifyContinuationResult(int32_t result); 474 * @return Return the result o [all...] |
/foundation/ability/ability_runtime/services/uripermmgr/include/ |
H A D | uri_permission_manager_stub_impl.h | 139 std::vector<bool> &result);
|
/foundation/ai/ai_engine/test/performance/delay/async_process/ |
H A D | async_process_delay_test.cpp | 78 void OnResult(const DataInfo &result, int resultCode, int requestId) override
|
/foundation/ability/dmsfwk/services/dtbschedmgr/include/mission/ |
H A D | distributed_bm_storage.h | 76 int32_t result, const std::string& bundleName);
|
/foundation/ability/ability_runtime/frameworks/js/napi/featureAbility/ |
H A D | napi_data_ability_helper_utils.h | 227 napi_env env, const std::vector<std::shared_ptr<DataAbilityResult>> &dataAbilityResult, napi_value result);
|
H A D | napi_data_ability_helper.h | 161 * @param param Indicates the want parameters saved the parse result. 233 napi_env env, napi_value param, std::vector<std::shared_ptr<DataAbilityOperation>> &result);
|
/foundation/ability/ability_runtime/frameworks/js/napi/wantagent/ |
H A D | napi_want_agent.h | 96 static void UnwrapWantAgent(napi_env env, napi_value jsParam, void** result);
|