Home
last modified time | relevance | path

Searched refs:result (Results 14126 - 14150 of 21109) sorted by relevance

1...<<561562563564565566567568569570>>...845

/third_party/icu/icu4c/source/i18n/
H A Dcalendar.cpp433 virtual void updateVisibleIDs(Hashtable& result, UErrorCode& status) const override
440 result.put(id, (void*)this, status);
1641 uint8_t result = (uint8_t)(dayOfWeek + ((dayOfWeek < 0) ? (7+UCAL_SUNDAY ) : UCAL_SUNDAY)); in julianDayToDayOfWeek() local
1642 return result; in julianDayToDayOfWeek()
2192 // result of the add operation is to move from DST to Standard, or in add()
2201 // compensates by subtracting an hour. As a result the time in add()
2318 // time and the result time. As the result, wall time has in add()
2334 // The result wall time or adjusted wall time was shifted because in add()
2335 // the target wall time does not exist on the result dat in add()
2680 UBool result = false; isWeekend() local
2848 int32_t result = fieldValue; getActualMinimum() local
3857 int32_t result = startValue; getActualHelper() local
[all...]
/third_party/jerryscript/jerry-core/parser/js/
H A Djs-lexer.c65 lit_code_point_t result = 0; in lexer_hex_to_code_point() local
71 result <<= 4; in lexer_hex_to_code_point()
75 result += byte - LIT_CHAR_0; in lexer_hex_to_code_point()
82 result += byte - (LIT_CHAR_LOWERCASE_A - 10); in lexer_hex_to_code_point()
92 return result; in lexer_hex_to_code_point()
107 lit_code_point_t result = 0; in lexer_hex_in_braces_to_code_point() local
118 result <<= 4; in lexer_hex_in_braces_to_code_point()
122 result += byte - LIT_CHAR_0; in lexer_hex_in_braces_to_code_point()
129 result += byte - (LIT_CHAR_LOWERCASE_A - 10); in lexer_hex_in_braces_to_code_point()
137 if (result > in lexer_hex_in_braces_to_code_point()
159 lit_code_point_t result = 0; lexer_unchecked_hex_to_character() local
3315 bool result = lexer_compare_identifier_to_chars (right_p->char_p, dynamic_buf_p, length); lexer_compare_identifiers() local
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/pipeline/
H A DvktPipelineBlendOperationAdvancedTests.cpp222 std::ostringstream result; in generateTestName() local
224 result << ((param.testMode == TEST_MODE_COHERENT && !param.coherentOperations) ? "barrier_" : ""); in generateTestName()
225 result << "color_attachments_" << param.colorAttachmentsCount; in generateTestName()
226 result << "_" << de::toLower(getBlendOverlapEXTStr(param.overlap).toString().substr(3)); in generateTestName()
227 result << (!param.premultipliedSrcColor ? "_nonpremultipliedsrc" : ""); in generateTestName()
228 result << (!param.premultipliedDstColor ? "_nonpremultiplieddst" : ""); in generateTestName()
229 result << "_" << param.testNumber; in generateTestName()
231 result << "_r8g8b8a8_unorm"; in generateTestName()
232 return result.str(); in generateTestName()
493 // result wit
751 Vec4 result = Vec4(0.0f, 0.0f, 0.0f, 1.0f); calculateFinalColor() local
[all...]
/third_party/skia/third_party/externals/icu/source/i18n/
H A Dcalendar.cpp430 virtual void updateVisibleIDs(Hashtable& result, UErrorCode& status) const in updateVisibleIDs() argument
437 result.put(id, (void*)this, status); in updateVisibleIDs()
1585 uint8_t result = (uint8_t)(dayOfWeek + ((dayOfWeek < 0) ? (7+UCAL_SUNDAY ) : UCAL_SUNDAY)); in julianDayToDayOfWeek() local
1586 return result; in julianDayToDayOfWeek()
2115 // result of the add operation is to move from DST to Standard, or in add()
2124 // compensates by subtracting an hour. As a result the time in add()
2241 // time and the result time. As the result, wall time has in add()
2257 // The result wall time or adjusted wall time was shifted because in add()
2258 // the target wall time does not exist on the result dat in add()
2603 UBool result = FALSE; isWeekend() local
2768 int32_t result = fieldValue; getActualMinimum() local
3750 int32_t result = startValue; getActualHelper() local
[all...]
/third_party/python/PC/
H A Dlauncher2.c1580 _registrySearchTags(const SearchInfo *search, EnvironmentInfo **result, HKEY root, int sortKey, const wchar_t *company, const wchar_t *fallbackArch) in _registrySearchTags() argument
1604 exitCode = addEnvironmentInfo(result, NULL, env); in _registrySearchTags()
1619 registrySearch(const SearchInfo *search, EnvironmentInfo **result, HKEY root, int sortKey, const wchar_t *fallbackArch) in registrySearch() argument
1639 exitCode = _registrySearchTags(search, result, subkey, sortKey, buffer, fallbackArch); in registrySearch()
1652 appxSearch(const SearchInfo *search, EnvironmentInfo **result, const wchar_t *packageFamilyName, const wchar_t *tag, int sortKey) in appxSearch() argument
1696 int exitCode = addEnvironmentInfo(result, NULL, env); in appxSearch()
1715 explicitOverrideSearch(const SearchInfo *search, EnvironmentInfo **result) in explicitOverrideSearch() argument
1734 exitCode = addEnvironmentInfo(result, NULL, env); in explicitOverrideSearch()
1754 virtualenvSearch(const SearchInfo *search, EnvironmentInfo **result) in virtualenvSearch() argument
1783 exitCode = addEnvironmentInfo(result, NUL in virtualenvSearch()
1879 collectEnvironments(const SearchInfo *search, EnvironmentInfo **result) collectEnvironments() argument
2187 EnvironmentInfo *result = NULL; selectEnvironment() local
[all...]
/third_party/node/deps/openssl/openssl/crypto/ec/
H A Dcurve25519.c57 uint64_t result; in load_8() local
59 result = in[0]; in load_8()
60 result |= ((uint64_t)in[1]) << 8; in load_8()
61 result |= ((uint64_t)in[2]) << 16; in load_8()
62 result |= ((uint64_t)in[3]) << 24; in load_8()
63 result |= ((uint64_t)in[4]) << 32; in load_8()
64 result |= ((uint64_t)in[5]) << 40; in load_8()
65 result |= ((uint64_t)in[6]) << 48; in load_8()
66 result |= ((uint64_t)in[7]) << 56; in load_8()
68 return result; in load_8()
283 uint64_t result; load_7() local
298 uint64_t result; load_6() local
781 uint64_t result; load_3() local
791 uint64_t result; load_4() local
[all...]
/third_party/openssl/crypto/ec/
H A Dcurve25519.c57 uint64_t result; in load_8() local
59 result = in[0]; in load_8()
60 result |= ((uint64_t)in[1]) << 8; in load_8()
61 result |= ((uint64_t)in[2]) << 16; in load_8()
62 result |= ((uint64_t)in[3]) << 24; in load_8()
63 result |= ((uint64_t)in[4]) << 32; in load_8()
64 result |= ((uint64_t)in[5]) << 40; in load_8()
65 result |= ((uint64_t)in[6]) << 48; in load_8()
66 result |= ((uint64_t)in[7]) << 56; in load_8()
68 return result; in load_8()
283 uint64_t result; load_7() local
298 uint64_t result; load_6() local
781 uint64_t result; load_3() local
791 uint64_t result; load_4() local
[all...]
/third_party/openssl/ohos_lite/crypto/ec/
H A Dcurve25519.c47 uint64_t result; in load_8() local
49 result = in[0]; in load_8()
50 result |= ((uint64_t)in[1]) << 8; in load_8()
51 result |= ((uint64_t)in[2]) << 16; in load_8()
52 result |= ((uint64_t)in[3]) << 24; in load_8()
53 result |= ((uint64_t)in[4]) << 32; in load_8()
54 result |= ((uint64_t)in[5]) << 40; in load_8()
55 result |= ((uint64_t)in[6]) << 48; in load_8()
56 result |= ((uint64_t)in[7]) << 56; in load_8()
58 return result; in load_8()
273 uint64_t result; load_7() local
288 uint64_t result; load_6() local
771 uint64_t result; load_3() local
781 uint64_t result; load_4() local
[all...]
/base/security/certificate_framework/frameworks/js/napi/certificate/src/
H A Dnapi_x509_cert_chain.cpp53 HcfX509CertChainValidateResult result; member
121 FreeX509CertChainValidateResult(context->result, freeCertFlag); in DeleteCertChainContext()
232 LOGE("Build cert validate result failed!"); in BuildCreateInstanceByBulidRlt()
292 context->async->errCode = context->certChain->validate(context->certChain, &context->params, &context->result); in ValidateExecute()
306 napi_value instance = BuildX509CertChainValidateResultJS(env, &context->result); in ValidateComplete()
387 CfResult result = certChain->toString(certChain, &blob); in ToString() local
388 if (result != CF_SUCCESS) { in ToString()
390 napi_throw(env, CertGenerateBusinessError(env, result, "toString failed")); in ToString()
404 CfResult result = certChain->hashCode(certChain, &blob); in HashCode() local
405 if (result ! in HashCode()
[all...]
/base/security/crypto_framework/frameworks/js/napi/crypto/src/
H A Dnapi_asy_key_generator.cpp355 static void ReturnGenKeyPairCallbackResult(napi_env env, GenKeyPairCtx *ctx, napi_value result) in ReturnGenKeyPairCallbackResult() argument
362 napi_value params[ARGS_SIZE_TWO] = { businessError, result }; in ReturnGenKeyPairCallbackResult()
373 static void ReturnGenKeyPairPromiseResult(napi_env env, GenKeyPairCtx *ctx, napi_value result) in ReturnGenKeyPairPromiseResult() argument
376 napi_resolve_deferred(env, ctx->deferred, result); in ReturnGenKeyPairPromiseResult()
383 static void ReturnConvertKeyCallbackResult(napi_env env, ConvertKeyCtx *ctx, napi_value result) in ReturnConvertKeyCallbackResult() argument
390 napi_value params[ARGS_SIZE_TWO] = { businessError, result }; in ReturnConvertKeyCallbackResult()
401 static void ReturnConvertKeyPromiseResult(napi_env env, ConvertKeyCtx *ctx, napi_value result) in ReturnConvertKeyPromiseResult() argument
404 napi_resolve_deferred(env, ctx->deferred, result); in ReturnConvertKeyPromiseResult()
411 static void ReturnConvertPemKeyPromiseResult(napi_env env, ConvertPemKeyCtx *ctx, napi_value result) in ReturnConvertPemKeyPromiseResult() argument
414 napi_resolve_deferred(env, ctx->deferred, result); in ReturnConvertPemKeyPromiseResult()
[all...]
/drivers/peripheral/distributed_camera/hdi_service/src/dcamera_device/
H A Ddmetadata_processor.cpp442 DHLOGE("Invalid result callback mode."); in SetMetadataResultMode()
462 DHLOGE("Enable metadata result list is empty."); in EnableMetadataResult()
484 DHLOGE("Disable metadata result list is empty."); in DisableMetadataResult()
506 for (auto result : allResultSet_) { in ResetEnableResults()
507 enabledResultSet_.insert(result); in ResetEnableResults()
515 DHLOGD("DMetadataProcessor::UpdateResultMetadata result callback mode: %{public}d", metaResultMode_); in UpdateResultMetadata()
522 DHLOGD("DMetadataProcessor::UpdateResultMetadata latest producer metadata result is null"); in UpdateResultMetadata()
540 std::shared_ptr<OHOS::Camera::CameraMetadata> result = in UpdateAllResult() local
542 int32_t ret = OHOS::Camera::CopyCameraMetadataItems(result->get(), latestProducerMetadataResult_->get()); in UpdateAllResult()
547 resultCallback_(resultTimestamp, result); in UpdateAllResult()
556 std::shared_ptr<OHOS::Camera::CameraMetadata> result = UpdateOnChanged() local
[all...]
/foundation/ability/dmsfwk/services/dtbschedmgr/src/mission/
H A Ddistributed_bm_storage.cpp112 ErrCode result = AccountSA::OsAccountManager::QueryAllCreatedOsAccounts(accounts); in SaveStorageDistributeInfo() local
113 if (result == ERR_OK && !accounts.empty()) { in SaveStorageDistributeInfo()
115 result = bundleMgr->GetAppProvisionInfo(bundleName, account.GetLocalId(), appProvisionInfo); in SaveStorageDistributeInfo()
116 if (result == ERR_OK && !appProvisionInfo.developerId.empty()) { in SaveStorageDistributeInfo()
176 HILOGW("distribute database ipc error and try to call again, result = %{public}d", status); in InnerSaveStorageDistributeInfo()
229 HILOGW("distribute database ipc error and try to call again, result = %{public}d", status); in DeleteStorageDistributeInfo()
259 HILOGD("The get, result = %{public}d", innerStatus); in GetStorageDistributeInfo()
268 HILOGD("Get result = ok"); in GetStorageDistributeInfo()
476 HILOGD("GetEntries, result = %{public}d", innerStatus); in GetEntries()
502 HILOGW("BundleNameId not found, Get result in GetBundleNameId()
749 FindProvishionInfo(OHOS::sptr<OHOS::AppExecFwk::IBundleMgr> bundleMgr, AppExecFwk::AppProvisionInfo appProvisionInfo, std::vector<AccountSA::OsAccountInfo> accounts, int32_t result, const std::string& bundleName) FindProvishionInfo() argument
787 int32_t result = AccountSA::OsAccountManager::QueryAllCreatedOsAccounts(accounts); UpdateDistributedData() local
[all...]
/foundation/arkui/ace_engine/frameworks/core/image/
H A Dimage_loader.cpp283 auto result = SkData::MakeFromFileName(realPath); in LoadImageData() local
284 if (!result) { in LoadImageData()
295 CHECK_NULL_RETURN(result, nullptr); in LoadImageData()
296 return SkData::MakeWithCopy(result->data(), result->size()); in LoadImageData()
298 return result; in LoadImageData()
301 CHECK_NULL_RETURN(result, nullptr); in LoadImageData()
306 return rsData->BuildWithCopy(result->data(), result->size()) ? rsData : nullptr; in LoadImageData()
308 SkDataWrapper* wrapper = new SkDataWrapper { std::move(result) }; in LoadImageData()
[all...]
/foundation/arkui/ace_engine/frameworks/core/interfaces/native/node/
H A Dnode_gesture_modifier.cpp580 auto result = interrupter(&interruptInfo); in setGestureInterrupterToNode()
582 return static_cast<GestureJudgeResult>(result); in setGestureInterrupterToNode()
608 auto* result = parallelInnerGesture(&parallelInnerGestureEvent); in setInnerGestureParallelTo()
609 if (!result || !result->recognizer) { in setInnerGestureParallelTo()
613 return AceType::Claim(reinterpret_cast<NG::NGGestureRecognizer*>(result->recognizer)); in setInnerGestureParallelTo()
719 ArkUI_Int32 getGestureTag(ArkUIGestureRecognizer* recognizer, char* buffer, ArkUI_Int32 bufferSize, ArkUI_Int32* result) in getGestureTag() argument
729 *result = actualSize; in getGestureTag()
741 ArkUIGestureRecognizer* recognizer, char* nodeId, ArkUI_Int32 size, ArkUI_Int32* result) in getGestureBindNodeId()
750 *result in getGestureBindNodeId()
740 getGestureBindNodeId( ArkUIGestureRecognizer* recognizer, char* nodeId, ArkUI_Int32 size, ArkUI_Int32* result) getGestureBindNodeId() argument
[all...]
/foundation/arkui/ace_engine_lite/frameworks/src/core/base/
H A Djs_fwk_common.cpp90 int16_t result = IntegerOf(value); in JerryGetIntegerProperty() local
92 return result; in JerryGetIntegerProperty()
291 // trace out error information if the result contains error in CallJSFunction()
875 * @brief Call jerry_has_property and return the result
886 jerry_value_t result = jerry_has_property(container, property); in JerryHasProperty() local
887 bool res = jerry_value_to_boolean(result); in JerryHasProperty()
888 jerry_release_value(result); in JerryHasProperty()
893 * @brief Call jerry_has_own_property and return the result
904 jerry_value_t result = jerry_has_own_property(container, property); in HasOwnProperty() local
905 bool res = jerry_value_to_boolean(result); in HasOwnProperty()
1136 JSValue result = JSFunction::Call(func, abilitySlice, args, size); CallWithRootAbilitySlice() local
[all...]
/foundation/communication/dsoftbus/tests/core/connection/ble/
H A Dconnection_ble_manager_test.cpp338 ConnectResult result = { in HWTEST_F() local
344 g_bleInterface->ConnectDevice(&option, requestId, &result); in HWTEST_F()
623 ConnectResult result = { in HWTEST_F() local
629 ret = g_bleInterface->ConnectDevice(&option, requestId, &result); in HWTEST_F()
660 ConnectResult result = { in HWTEST_F() local
666 ret = g_bleInterface->ConnectDevice(&option, requestId, &result); in HWTEST_F()
668 g_bleInterface->ConnectDevice(&option, requestId, &result); in HWTEST_F()
698 ConnectResult result = { in HWTEST_F() local
705 ret = g_bleInterface->ConnectDevice(&option, requestId, &result); in HWTEST_F()
715 ret = g_bleInterface->ConnectDevice(&option, requestId, &result); in HWTEST_F()
[all...]
/foundation/communication/nfc/services/src/nci_adapter/nci_native_default/src/
H A Dtag_nci_adapter_ntf.cpp882 tNFA_STATUS result = NFA_STATUS_FAILED; in DoSelectForMultiTag() local
885 return result; in DoSelectForMultiTag()
890 result = NFA_Select( in DoSelectForMultiTag()
893 result = NFA_Select( in DoSelectForMultiTag()
896 result = NFA_Select( in DoSelectForMultiTag()
899 return result; in DoSelectForMultiTag()
967 tNFA_STATUS result = DoSelectForMultiTag(currIdx); in SelectTheFirstTag() local
968 InfoLog("TagNciAdapterNtf::SelectTheFirstTag result = %{public}d", result); in SelectTheFirstTag()
990 tNFA_STATUS result in SelectTheNextTag() local
[all...]
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/unittest/common/syncer/cloud/
H A Ddistributeddb_cloud_syncer_lock_test.cpp857 bool result = g_processCondition.wait_for(lock, std::chrono::seconds(WAIT_TIME), in HWTEST_F() local
859 ASSERT_EQ(result, true); in HWTEST_F()
873 bool result = g_processCondition.wait_for(lock, std::chrono::seconds(WAIT_TIME), in HWTEST_F() local
875 ASSERT_EQ(result, true); in HWTEST_F()
1066 bool result = g_processCondition.wait_for(lock, std::chrono::seconds(WAIT_TIME), in HWTEST_F() local
1068 ASSERT_EQ(result, true); in HWTEST_F()
1122 bool result = g_processCondition.wait_for(lock, std::chrono::seconds(WAIT_TIME), in HWTEST_F() local
1124 ASSERT_EQ(result, true); in HWTEST_F()
1179 bool result = g_processCondition.wait_for(lock, std::chrono::seconds(WAIT_TIME), in HWTEST_F() local
1181 ASSERT_EQ(result, tru in HWTEST_F()
[all...]
/test/testfwk/xdevice/src/xdevice/_core/executor/
H A Dconcurrent.py87 result_list.append((future.result(), future_params[future]))
173 # move result file to round folder when repeat > 1
178 LOG.debug("Execute result: %s" % execute_result)
180 # update result xml
209 LOG.debug("Thread %s put result", self.name)
381 LOG.warning("%s no history execute result exists",
388 os.path.join(self.task.config.report_path, "result")
399 # inherit history execute result
404 " result")
407 " result", history_execute_resul
[all...]
/third_party/alsa-lib/src/pcm/
H A Dpcm_ioplug.c639 snd_pcm_sframes_t result; in ioplug_priv_transfer_areas() local
644 result = io->data->callback->transfer(io->data, areas, offset, size); in ioplug_priv_transfer_areas()
646 result = size; in ioplug_priv_transfer_areas()
647 if (result > 0) in ioplug_priv_transfer_areas()
648 snd_pcm_mmap_appl_forward(pcm, result); in ioplug_priv_transfer_areas()
649 return result; in ioplug_priv_transfer_areas()
715 snd_pcm_sframes_t result; in snd_pcm_ioplug_mmap_begin_capture() local
716 result = io->data->callback->transfer(io->data, *areas, *offset, *frames); in snd_pcm_ioplug_mmap_begin_capture()
717 if (result < 0) in snd_pcm_ioplug_mmap_begin_capture()
718 return result; in snd_pcm_ioplug_mmap_begin_capture()
[all...]
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DCaseMapImpl.java375 * Appends a full case mapping result, see {@link UCaseProps#MAX_STRING_LENGTH}.
378 private static void appendResult(int result, Appendable dest, in appendResult() argument
380 // Decode the result. in appendResult()
381 if (result < 0) { in appendResult()
389 appendCodePoint(dest, ~result); in appendResult()
390 } else if (result <= UCaseProps.MAX_STRING_LENGTH) { in appendResult()
391 // The mapping has already been appended to result. in appendResult()
393 edits.addReplace(cpLength, result); in appendResult()
397 int length = appendCodePoint(dest, result); in appendResult()
421 StringBuilder result in applyEdits()
[all...]
/third_party/icu/icu4c/source/common/
H A Dputil.cpp908 UBool result = true; in compareBinaryFiles() local
928 result = false; in compareBinaryFiles()
945 result = false; in compareBinaryFiles()
953 result = false; in compareBinaryFiles()
960 return result; in compareBinaryFiles()
977 char* result = NULL; in searchForTZFile() local
1019 result = searchForTZFile(newpath.data(), tzInfo); in searchForTZFile()
1028 if (result != NULL) in searchForTZFile()
1043 result = gSearchTZFileResult->data(); in searchForTZFile()
1055 return result; in searchForTZFile()
[all...]
H A Duresdata.cpp79 int result; in _res_findTableItem() local
88 result = uprv_strcmp(key, tableKey); in _res_findTableItem()
90 result = uprv_compareInvCharsAsAscii(key, tableKey); in _res_findTableItem()
92 if (result < 0) { in _res_findTableItem()
94 } else if (result > 0) { in _res_findTableItem()
110 int result; in _res_findTable32Item() local
119 result = uprv_strcmp(key, tableKey); in _res_findTable32Item()
121 result = uprv_compareInvCharsAsAscii(key, tableKey); in _res_findTable32Item()
123 if (result < 0) { in _res_findTable32Item()
125 } else if (result > in _res_findTable32Item()
[all...]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/
H A DCaseMapImpl.java369 * Appends a full case mapping result, see {@link UCaseProps#MAX_STRING_LENGTH}.
372 private static void appendResult(int result, Appendable dest, in appendResult() argument
374 // Decode the result. in appendResult()
375 if (result < 0) { in appendResult()
383 appendCodePoint(dest, ~result); in appendResult()
384 } else if (result <= UCaseProps.MAX_STRING_LENGTH) { in appendResult()
385 // The mapping has already been appended to result. in appendResult()
387 edits.addReplace(cpLength, result); in appendResult()
391 int length = appendCodePoint(dest, result); in appendResult()
415 StringBuilder result in applyEdits()
[all...]
/third_party/jerryscript/jerry-core/ecma/operations/
H A Decma-function-object.c624 ecma_value_t result = ECMA_VALUE_ERROR; in ecma_op_function_has_instance() local
626 ecma_value_t result = ECMA_VALUE_FALSE; in ecma_op_function_has_instance() local
655 result = ECMA_VALUE_FALSE; in ecma_op_function_has_instance()
664 result = ECMA_VALUE_TRUE; in ecma_op_function_has_instance()
670 return result; in ecma_op_function_has_instance()
773 * @return the result of the function call.
933 * @return the result of the function call.
1084 ecma_value_t result; in ecma_op_function_call() local
1088 result = ecma_op_function_call_simple (func_obj_p, this_arg_value, arguments_list_p, arguments_list_len); in ecma_op_function_call()
1092 result in ecma_op_function_call()
[all...]

Completed in 52 milliseconds

1...<<561562563564565566567568569570>>...845