Home
last modified time | relevance | path

Searched refs:result (Results 6701 - 6725 of 17818) sorted by relevance

1...<<261262263264265266267268269270>>...713

/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/shaderrender/
H A DvktShaderRenderTextureGatherTests.cpp372 tcu::Vector<T, 4> result; in swizzleColor() local
374 result[i] = swizzleColorChannel(src, swizzle.getSwizzle()[i]); in swizzleColor()
375 return result; in swizzleColor()
599 const tcu::Vector<ColorScalarT, 4>& result) in isGatherOffsetsResultValid()
603 return tcu::isGatherResultValid(texture, sampler, prec, coord, componentNdx, result); in isGatherOffsetsResultValid()
612 const Vec4& result) in isGatherOffsetsCompareResultValid()
616 return tcu::isGatherCompareResultValid(texture, sampler, prec, coord, cmpReference, result); in isGatherOffsetsCompareResultValid()
621 const ConstPixelBufferAccess& result, in verifyGatherOffsets()
631 const int width = result.getWidth(); in verifyGatherOffsets()
632 const int height = result in verifyGatherOffsets()
593 isGatherOffsetsResultValid(const tcu::TextureCubeView& texture, const tcu::Sampler& sampler, const PrecType& prec, const Vec3& coord, int componentNdx, const IVec2 (&offsets)[4], const tcu::Vector<ColorScalarT, 4>& result) isGatherOffsetsResultValid() argument
606 isGatherOffsetsCompareResultValid(const tcu::TextureCubeView& texture, const tcu::Sampler& sampler, const tcu::TexComparePrecision& prec, const Vec3& coord, const IVec2 (&offsets)[4], float cmpReference, const Vec4& result) isGatherOffsetsCompareResultValid() argument
620 verifyGatherOffsets(TestLog& log, const ConstPixelBufferAccess& result, const TexViewT& texture, const TexCoordT (&texCoords)[4], const tcu::Sampler& sampler, const PrecType& lookupPrec, int componentNdx, const PixelOffsets& getPixelOffsets) verifyGatherOffsets() argument
700 verifyGatherOffsetsCompare(TestLog& log, const ConstPixelBufferAccess& result, const TexViewT& texture, const TexCoordT (&texCoords)[4], const tcu::Sampler& sampler, const tcu::TexComparePrecision& compPrec, const PixelCompareRefZ& getPixelRefZ, const PixelOffsets& getPixelOffsets) verifyGatherOffsetsCompare() argument
932 vector<GatherArgs> result; generateBasic2DCaseIterations() local
1410 bool result = verify(m_currentIteration, getResultImage().getAccess()); iterate() local
1659 string result; genGatherFuncCall() local
[all...]
/third_party/node/deps/v8/src/wasm/
H A Dfunction-body-decoder-impl.h624 uint32_t result = in next() local
627 return result; in next()
908 F(I32Const, Value* result, int32_t value) \
909 F(I64Const, Value* result, int64_t value) \
910 F(F32Const, Value* result, float value) \
911 F(F64Const, Value* result, double value) \
912 F(S128Const, Simd128Immediate<validate>& imm, Value* result) \
914 Value* result) \
915 F(RefNull, ValueType type, Value* result) \
916 F(RefFunc, uint32_t function_index, Value* result) \
2729 Value result = CreateValue( DECODE() local
2758 Value result = CreateValue(ref_object.type.AsNonNull()); DECODE() local
2939 Value result = CreateValue(type); DECODE() local
2954 Value result = CreateValue(imm.type); DECODE() local
3095 Value result = CreateValue(kWasmI32); DECODE() local
3144 Value result = DECODE() local
3189 Value result = CreateValue(local_type); DECODE() local
3231 Value result = CreateValue(this->module_->tables[imm.index].type); DECODE() local
3290 Value result = CreateValue(mem_type); DECODE() local
3301 Value result = CreateValue(result_type); DECODE() local
3767 Value result = CreateValue(type.value_type()); DecodeLoadMem() local
3784 Value result = CreateValue(kWasmS128); DecodeLoadTransformMem() local
3802 Value result = CreateValue(kWasmS128); DecodeLoadLane() local
3841 Value result = CreateValue(kWasmS128); SimdConstOp() local
3852 Value result = CreateValue(type); SimdExtractLane() local
3866 Value result = CreateValue(kWasmS128); SimdReplaceLane() local
3880 Value result = CreateValue(kWasmS128); Simd8x16ShuffleOp() local
4401 Value result = DecodeGCOpcode() local
4982 Value result = CreateValue(GetReturnType(sig)); DecodeAtomicOpcode() local
5080 Value result = CreateValue(kWasmI32); DecodeNumericOpcode() local
[all...]
/foundation/arkui/ui_lite/frameworks/draw/
H A Ddraw_utils.cpp784 Color32 result; local
785 result.full = Color::ColorTo32(in.color);
787 result.alpha = FO_TO_INTEGER(outA);
789 result.alpha = static_cast<uint8_t>(outA >> 8); // 8:shift 8 bit right
791 COLOR_FILL_BLEND(screenBuffer, bufferMode, &result, ARGB8888, in.opaScale);
897 Color16 result; local
899 result.red = static_cast<uint8_t>(outR >> FIXED_Q_NUM);
900 result.green = static_cast<uint8_t>(outG >> FIXED_Q_NUM);
901 result.blue = static_cast<uint8_t>(outB >> FIXED_Q_NUM);
903 result
1017 Color24 result; global() local
1100 Color32 result; global() local
1169 Color32 result; global() local
1412 Color32 result; global() local
1441 Color32 result; global() local
[all...]
/third_party/node/deps/v8/src/execution/mips/
H A Dsimulator-mips.cc1084 void Simulator::SetFpResult(const double& result) { in SetFpResult() argument
1086 set_fpu_register_double(0, result); in SetFpResult()
1090 memcpy(buffer, &result, sizeof(buffer)); in SetFpResult()
1091 // Copy result to v0 and v1. in SetFpResult()
1245 // Sets the rounding error codes in FCSR based on the result of the rounding.
1283 // Sets the rounding error codes in FCSR based on the result of the rounding.
1323 // Sets the rounding error codes in FCSR based on the result of the rounding.
1361 // Sets the rounding error codes in FCSR based on the result of the rounding.
1403 // 0 RN (round to nearest): Round a result to the nearest in round_according_to_fcsr()
1404 // representable value; if the result i in round_according_to_fcsr()
2435 int64_t result = target(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, SoftwareInterrupt() local
2566 FPUProcessNaNsAndZeros(T a, T b, MaxMinKind kind, T* result) FPUProcessNaNsAndZeros() argument
2586 T result; FPUMin() local
2596 T result; FPUMax() local
2606 T result; FPUMinA() local
2638 FPUCanonalizeNaNArg(T result, T arg, KeepSign keepSign = KeepSign::no) FPUCanonalizeNaNArg() argument
2648 FPUCanonalizeNaNArgs(T result, KeepSign keepSign, T first) FPUCanonalizeNaNArgs() argument
2656 FPUCanonalizeNaNArgs(T result, KeepSign keepSign, T first, Args... args) FPUCanonalizeNaNArgs() argument
2670 T result = f(first, args...); FPUCanonalizeOperation() local
2694 double result, temp, temp_result; DecodeTypeRegisterDRsType() local
2723 SetFPUDoubleResult(fd_reg(), result); DecodeTypeRegisterDRsType() local
2875 int32_t result; DecodeTypeRegisterDRsType() local
2877 SetFPUWordResult(fd_reg(), result); DecodeTypeRegisterDRsType() local
2885 int32_t result = static_cast<int32_t>(rounded); DecodeTypeRegisterDRsType() local
2891 SetFPUWordResult(fd_reg(), result); DecodeTypeRegisterDRsType() local
2899 int32_t result = static_cast<int32_t>(rounded); DecodeTypeRegisterDRsType() local
2900 SetFPUWordResult(fd_reg(), result); DecodeTypeRegisterDRsType() local
2908 int32_t result = static_cast<int32_t>(rounded); DecodeTypeRegisterDRsType() local
2909 SetFPUWordResult(fd_reg(), result); DecodeTypeRegisterDRsType() local
2917 int32_t result = static_cast<int32_t>(rounded); DecodeTypeRegisterDRsType() local
2918 SetFPUWordResult(fd_reg(), result); DecodeTypeRegisterDRsType() local
2928 int64_t result; DecodeTypeRegisterDRsType() local
2931 SetFPUResult(fd_reg(), result); DecodeTypeRegisterDRsType() local
2957 int64_t result = static_cast<int64_t>(rounded); DecodeTypeRegisterDRsType() local
3010 uint64_t result; DecodeTypeRegisterDRsType() local
3181 float result, temp_result; DecodeTypeRegisterSRsType() local
3211 SetFPUFloatResult(fd_reg(), result); DecodeTypeRegisterSRsType() local
3323 uint32_t result; DecodeTypeRegisterSRsType() local
3422 int32_t result = static_cast<int32_t>(rounded); DecodeTypeRegisterSRsType() local
3423 SetFPUWordResult(fd_reg(), result); DecodeTypeRegisterSRsType() local
3445 int32_t result = static_cast<int32_t>(rounded); DecodeTypeRegisterSRsType() local
3446 SetFPUWordResult(fd_reg(), result); DecodeTypeRegisterSRsType() local
3467 int32_t result = static_cast<int32_t>(rounded); DecodeTypeRegisterSRsType() local
3473 SetFPUWordResult(fd_reg(), result); DecodeTypeRegisterSRsType() local
3482 int64_t result = static_cast<int64_t>(rounded); DecodeTypeRegisterSRsType() local
3502 int32_t result = static_cast<int32_t>(rounded); DecodeTypeRegisterSRsType() local
3503 SetFPUWordResult(fd_reg(), result); DecodeTypeRegisterSRsType() local
3540 int64_t result; DecodeTypeRegisterSRsType() local
3543 SetFPUResult(fd_reg(), result); DecodeTypeRegisterSRsType() local
3554 int32_t result; DecodeTypeRegisterSRsType() local
3556 SetFPUWordResult(fd_reg(), result); DecodeTypeRegisterSRsType() local
[all...]
/foundation/ai/intelligent_voice_framework/services/intell_voice_engine/server/update/controller/
H A Dupdate_engine_controller.h39 void OnUpdateComplete(UpdateState result, const std::string &param);
48 void UpdateCompleteProc(UpdateState result, const std::string &param, bool &isLast);
53 virtual void HandleUpdateComplete(UpdateState result, const std::string &param) {}; in HandleUpdateComplete() argument
/foundation/ability/form_fwk/services/src/
H A Dform_distributed_client.cpp85 int32_t result = reply.ReadInt32(); in ShareForm() local
86 HILOG_DEBUG("get result from server data = %{public}d", result); in ShareForm()
87 return result; in ShareForm()
/foundation/ability/ability_runtime/interfaces/kits/native/appkit/app_startup/
H A Dstartup_task_dispatcher.h46 void Dispatch(const std::string &name, const std::shared_ptr<StartupTaskResult> &result);
47 int32_t NotifyChildren(const std::string &name, const std::shared_ptr<StartupTaskResult> &result);
49 void OnError(const std::string &name, const std::shared_ptr<StartupTaskResult> &result);
/foundation/ability/ability_runtime/services/abilitymgr/src/
H A Dremote_on_listener_proxy.cpp58 int result = remote->SendRequest(IRemoteOnListener::ON_CALLBACK, data, reply, option); in OnCallback() local
59 if (result != NO_ERROR) { in OnCallback()
60 TAG_LOGE(AAFwkTag::ABILITYMGR, "fail, error: %{public}d", result); in OnCallback()
/foundation/arkui/ace_engine/frameworks/bridge/cj_frontend/interfaces/cj_ffi/
H A Dutils.cpp71 auto result = keyNameMap.find(static_cast<FunctionKey>(functionKey)); in GetFunctionKey() local
72 return (result != keyNameMap.end()) ? result->second : std::string(); in GetFunctionKey()
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/swiper_indicator/indicator_common/
H A Dindicator_accessibility.cpp58 AccessibilityValue result; in GetAccessibilityValue() local
60 CHECK_NULL_RETURN(frameNode, result); in GetAccessibilityValue()
62 CHECK_NULL_RETURN(indicatorAccessibilityProperty, result); in GetAccessibilityValue()
/foundation/arkui/ace_engine_lite/frameworks/src/core/modules/presets/test/unittest/common/
H A Dlocalization_module_tdd_test.cpp76 * @tc.expected: step1.the result of execute js is undefined in HWTEST_F()
81 JSValue result = CallJSFunction(localization_, viewModel_, args, 1); in HWTEST_F() local
82 EXPECT_EQ(undefined, result); in HWTEST_F()
86 jerry_release_value(result); in HWTEST_F()
/foundation/arkui/napi/sample/native_module_calc/
H A Dnapi_number.cpp59 napi_value result = nullptr; in Export() local
61 sizeof(descriptors) / sizeof(*descriptors), descriptors, &result); in Export()
63 napi_set_named_property(env, exports, "Number", result); in Export()
/foundation/arkui/ace_engine_lite/frameworks/tools/qt/simulator/jsfwk/targets/simulator/mock/vsyncthread/
H A Dvsync_thread.cpp66 TEDispatchingResult result = VsyncDispatchManager::GetInstance().DispatchVsyncEvent(); in SimuOneTickEvent() local
67 if (result != TEDispatchingResult::ACCEPTED) { in SimuOneTickEvent()
74 return result; in SimuOneTickEvent()
/foundation/bundlemanager/bundle_tool/test/mock/
H A Dmock_bundle_mgr_host.cpp26 const DumpFlag flag, const std::string &bundleName, int32_t userId, std::string &result) in DumpInfos()
32 result = bundleName + "\n"; in DumpInfos()
34 result = "OK"; in DumpInfos()
25 DumpInfos( const DumpFlag flag, const std::string &bundleName, int32_t userId, std::string &result) DumpInfos() argument
/foundation/bundlemanager/bundle_tool/test/systemtest/bm/
H A Dtool_system_test.cpp30 std::string result = ""; in ExecuteCommand() local
39 result.append(commandResult); in ExecuteCommand()
45 return result; in ExecuteCommand()
/foundation/graphic/graphic_3d/lume/LumeEcsSerializer/EcsSerializer/include/ecs_serializer/
H A Decs_property_util.h46 IPropertyHandle* result = nullptr; in ResolveContainerProperty() local
56 result = *(IPropertyHandle**)(propertyData.offset); in ResolveContainerProperty()
62 return result; in ResolveContainerProperty()
/foundation/multimedia/av_session/services/session/server/test/fuzztest/sessionlistenerproxy_fuzzer/
H A Dsession_listenerproxy_fuzzer.cpp53 int32_t result = AVSESSION_ERROR; in FuzzSendRequest() local
55 CHECK_AND_RETURN_RET_LOG((result = remote->SendRequest(cmdCode, request, reply, option)) == 0, ERR_IPC_SEND_REQUEST, in FuzzSendRequest()
57 return result == AVSESSION_SUCCESS; in FuzzSendRequest()
/foundation/multimedia/player_framework/frameworks/native/video_editor/composite_engine/impl/
H A Dvideo_composite_engine.h38 void OnDecodeResult(VideoDecodeResult result) override;
41 void OnEncodeResult(VideoEncodeResult result) override;
43 void OnRenderFinish(uint64_t pts, GraphicsRenderResult result);
/foundation/multimedia/media_library/frameworks/js/src/
H A Dmodal_ui_callback.cpp55 void ModalUICallback::OnResultForModal(int32_t resultCode, const OHOS::AAFwk::Want &result) in OnResultForModal() argument
58 pickerCallBack_->uris = result.GetStringArrayParam("select-item-list"); in OnResultForModal()
59 pickerCallBack_->isOrigin = result.GetBoolParam("isOriginal", false); in OnResultForModal()
/foundation/multimedia/media_library/interfaces/kits/c/
H A Dmedia_asset_base_capi.h124 * @error Media library result is ok.
281 * @param result Results of the processing of the requested resources.
285 typedef void (*OH_MediaLibrary_OnDataPrepared)(int32_t result, MediaLibrary_RequestId requestId);
292 * @param result results {@link MediaLibrary_ErrorCode} of the processing of the requested resources.
299 typedef void (*OH_MediaLibrary_OnImageDataPrepared)(MediaLibrary_ErrorCode result,
308 * @param result results {@link MediaLibrary_ErrorCode} of the processing of the requested resources.
315 typedef void (*OH_MediaLibrary_OnMovingPhotoDataPrepared)(MediaLibrary_ErrorCode result,
/foundation/multimedia/ringtone_library/test/unittest/ringtone_data_extension_test/src/
H A Dringtone_bundle_manager_test.cpp67 const string result = "dataCommand_GetResult_test_001"; in HWTEST_F() local
68 cmd.SetResult(result); in HWTEST_F()
70 EXPECT_EQ(ret, result); in HWTEST_F()
/foundation/resourceschedule/device_usage_statistics/services/packageusage/src/
H A Dbundle_active_event_list.cpp49 int32_t result = size; in FindBestIndex() local
57 result = mid; in FindBestIndex()
62 return result; in FindBestIndex()
/foundation/communication/netmanager_base/services/netmanagernative/src/netsys/dnsresolv/
H A Dnet_dns_result_callback_stub.cpp65 int32_t result = OnDnsResultReport(size, dnsResultReport); in CmdDnsResultReport() local
66 if (!reply.WriteInt32(result)) { in CmdDnsResultReport()
68 return result; in CmdDnsResultReport()
H A Dnet_dns_health_callback_stub.cpp57 int32_t result = OnDnsHealthReport(dnsHealthReport); in CmdDnsHealthReport() local
58 if (!reply.WriteInt32(result)) { in CmdDnsHealthReport()
60 return result; in CmdDnsHealthReport()
/foundation/communication/dsoftbus/tests/sdk/transmission/trans_channel/br/optimization/
H A Dsoftbus_file_test_entry.cpp49 int32_t result = 0; in ProcessCustomArgs() local
57 result = atoi(findPtr + 1); in ProcessCustomArgs()
58 argItem.second = result; in ProcessCustomArgs()

Completed in 28 milliseconds

1...<<261262263264265266267268269270>>...713