Home
last modified time | relevance | path

Searched refs:result (Results 11201 - 11225 of 11723) sorted by relevance

1...<<441442443444445446447448449450>>...469

/third_party/curl/tests/unit/
H A Dunit1651.c349 CURLcode result; variable
363 result = Curl_extract_certinfo(data, 0, beg, end);
365 fail_unless(result == CURLE_OK, "Curl_extract_certinfo returned error");
/third_party/backends/backend/
H A Dqcam.c516 returned as the function result. Depending on the mode, it may be
862 result in poor images. */ in reader_process()
1092 SANE_Status result, status; in attach() local
1127 result = enable_ports (q); in attach()
1128 if (result != SANE_STATUS_GOOD) in attach()
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/lang/
H A DUCharacter.java2838 StringBuilder result = new StringBuilder(upper.length()); in trimBlockName()
2842 result.append(c); in trimBlockName()
2845 return result.toString(); in trimBlockName()
4661 * to a result string with a different length as appropriate.
4678 * The result is a string whose length is 1 for BMP code points, 2 for supplementary ones.
4710 * to a result string with a different length as appropriate.
4733 * to a result string with a different length as appropriate.
5604 * They can map to a result string with a different length as appropriate.
5676 * They can map to a result string with a different length as appropriate.
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/number/
H A DNumberSkeletonImpl.java664 * Given that the current segment represents a stem, parse it and save the result.
856 * Given that the current segment represents an option, parse it and save the result.
1049 BytesTrie.Result result = tempStemTrie.next(segment, 0, segment.length()); in parseExponentSignOption()
1050 if (result != BytesTrie.Result.INTERMEDIATE_VALUE in parseExponentSignOption()
1051 && result != BytesTrie.Result.FINAL_VALUE) { in parseExponentSignOption()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/number/
H A DNumberSkeletonImpl.java637 * Given that the current segment represents a stem, parse it and save the result.
812 * Given that the current segment represents an option, parse it and save the result.
985 BytesTrie.Result result = tempStemTrie.next(segment, 0, segment.length()); in parseExponentSignOption()
986 if (result != BytesTrie.Result.INTERMEDIATE_VALUE in parseExponentSignOption()
987 && result != BytesTrie.Result.FINAL_VALUE) { in parseExponentSignOption()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/lang/
H A DUCharacter.java2355 StringBuilder result = new StringBuilder(upper.length()); in trimBlockName()
2359 result.append(c); in trimBlockName()
2362 return result.toString(); in trimBlockName()
3965 * to a result string with a different length as appropriate.
3981 * The result is a string whose length is 1 for BMP code points, 2 for supplementary ones.
4012 * to a result string with a different length as appropriate.
4034 * to a result string with a different length as appropriate.
4870 * They can map to a result string with a different length as appropriate.
4937 * They can map to a result string with a different length as appropriate.
/third_party/icu/icu4c/source/common/unicode/
H A Dunistr.h379 * @return The result of bitwise character comparison: 0 if this
396 * @return The result of bitwise character comparison: 0 if this
417 * @return The result of bitwise character comparison: 0 if this
435 * @return The result of bitwise character comparison: 0 if this
452 * @return The result of bitwise character comparison: 0 if this
473 * @return The result of bitwise character comparison: 0 if this
496 * @return The result of bitwise character comparison: 0 if this
511 * The result may be different from the results of compare(), operator<, etc.
518 * If either of the UTF-16 strings is malformed (i.e., it contains unpaired surrogates), then the result is not defined.
530 * The result ma
[all...]
/third_party/lzma/CPP/7zip/UI/Common/
H A DArchiveExtractCallback.cpp61 HRESULT result = S_OK; in Write() local
63 result = _stream->Write(data, size, &size); in Write()
69 return result; in Write()
1158 (needExit = true) means that we must exit GetStream() even for S_OK result.
2556 // result = E_FAIL; in SetDirsTimes()
/third_party/mbedtls/library/
H A Drsa.c423 * one is the result is precisely the information the attacker wants.
549 * and the result of memcpy() would be undefined; prevent undefined in mbedtls_ct_rsaes_pkcs1_v15_unpadding()
1369 * `to_mont_rep()` on them), yielding a result that's also * R mod N (aka in rsa_unblind()
1371 * N, so the result is directly what we want - no need to call in rsa_unblind()
1417 /* Temporary holding the result */ in mbedtls_rsa_private()
1437 * checked result; should be the same in the end. */ in mbedtls_rsa_private()
1556 /* Verify the result to prevent glitching attacks. */ in mbedtls_rsa_private()
2542 unsigned char result[MBEDTLS_MD_MAX_SIZE]; in mbedtls_rsa_rsassa_pss_verify_ext() local
2632 result, mgf1_hash_id); in mbedtls_rsa_rsassa_pss_verify_ext()
2637 if (memcmp(hash_start, result, hle in mbedtls_rsa_rsassa_pss_verify_ext()
[all...]
/third_party/lame/libmp3lame/
H A Did3tag.c160 int result = 0, i, window = 0xff; in frame_id_matches() local
165 result |= iw; in frame_id_matches()
168 return result; in frame_id_matches()
/third_party/mesa3d/src/gallium/drivers/zink/
H A Dzink_bo.c684 VkResult result = VKSCR(MapMemory)(screen->dev, real->mem, 0, real->base.size, 0, &cpu); in zink_bo_map() local
685 if (result != VK_SUCCESS) { in zink_bo_map()
686 mesa_loge("ZINK: vkMapMemory failed (%s)", vk_Result_to_str(result)); in zink_bo_map()
H A Dzink_program.c392 VkResult result = VKSCR(CreatePipelineLayout)(screen->dev, &plci, NULL, &layout); in zink_pipeline_layout_create() local
393 if (result != VK_SUCCESS) { in zink_pipeline_layout_create()
394 mesa_loge("vkCreatePipelineLayout failed (%s)", vk_Result_to_str(result)); in zink_pipeline_layout_create()
/third_party/node/src/crypto/
H A Dcrypto_context.cc121 // distinguish between a failed operation and an empty result. Fix that in SSL_CTX_use_certificate_chain()
243 Local<Value> result[arraysize(root_certs)]; in GetRootCertificates() local
249 .ToLocal(&result[i])) { in GetRootCertificates()
255 Array::New(env->isolate(), result, arraysize(root_certs))); in GetRootCertificates()
/third_party/ntfs-3g/libfuse-lite/
H A Dfuse_lowlevel.c469 int fuse_reply_ioctl(fuse_req_t req, int result, const void *buf, size_t size) in fuse_reply_ioctl() argument
476 arg.result = result; in fuse_reply_ioctl()
/third_party/node/deps/icu-small/source/common/unicode/
H A Dunistr.h379 * @return The result of bitwise character comparison: 0 if this
396 * @return The result of bitwise character comparison: 0 if this
417 * @return The result of bitwise character comparison: 0 if this
435 * @return The result of bitwise character comparison: 0 if this
452 * @return The result of bitwise character comparison: 0 if this
473 * @return The result of bitwise character comparison: 0 if this
496 * @return The result of bitwise character comparison: 0 if this
511 * The result may be different from the results of compare(), operator<, etc.
518 * If either of the UTF-16 strings is malformed (i.e., it contains unpaired surrogates), then the result is not defined.
530 * The result ma
[all...]
/third_party/mesa3d/src/microsoft/vulkan/
H A Ddzn_image.c666 VkResult result = wsi_common_get_images(swapchain, &n_images, images); in dzn_swapchain_get_image() local
668 if (result == VK_SUCCESS || result == VK_INCOMPLETE) in dzn_swapchain_get_image()
/third_party/libinput/tools/
H A Dlibinput-debug-gui.c308 int result; in x_lock_pointer() local
321 result = XGrabPointer(x_display, x_win, in x_lock_pointer()
327 return (result == GrabSuccess); in x_lock_pointer()
/third_party/lwip/src/core/
H A Dtcp.c2754 u8_t result = tcp_ext_arg_id; local
2762 LWIP_ASSERT("Increase LWIP_TCP_PCB_NUM_EXT_ARGS in lwipopts.h", result < LWIP_TCP_PCB_NUM_EXT_ARGS);
2763 return result;
/third_party/node/deps/v8/src/compiler/
H A Dcompilation-dependencies.cc391 ValidationResult result = in GetHolderIfValid() local
396 if (result == ValidationResult::kFoundCorrect) { in GetHolderIfValid()
398 } else if (result == ValidationResult::kFoundIncorrect) { in GetHolderIfValid()
991 // slack tracking result.
/third_party/node/deps/v8/src/codegen/arm/
H A Dassembler-arm.h1237 bool result = !pending_32_bit_constants_.empty(); in has_pending_constants() local
1238 DCHECK_EQ(result, first_const_pool_32_use_ != -1); in has_pending_constants()
1239 return result; in has_pending_constants()
1327 // success. The result will be encoded in |instr| directly. This method may
/third_party/node/deps/v8/src/execution/
H A Disolate.h930 // the result is false, the pending exception is guaranteed to be
937 // Exception throwing support. The caller should use the result
1013 // result in the target out parameter. The source location is attached to a
1211 Deoptimizer* result = current_deoptimizer_; in GetAndClearCurrentDeoptimizer() local
1212 CHECK_NOT_NULL(result); in GetAndClearCurrentDeoptimizer()
1214 return result; in GetAndClearCurrentDeoptimizer()
1696 // These always return the same result as static methods above, but don't
/third_party/node/deps/v8/src/objects/
H A Dfeedback-vector.cc327 Handle<FeedbackVector> result = Handle<FeedbackVector>::cast(vector); in New() local
330 AddToVectorsForProfilingTools(isolate, result); in New()
332 return result; in New()
/third_party/mesa3d/src/gallium/winsys/amdgpu/drm/
H A Damdgpu_cs.c387 uint32_t result, hangs; in amdgpu_ctx_query_reset_status() local
389 r = amdgpu_cs_query_reset_state(ctx->ctx, &result, &hangs); in amdgpu_ctx_query_reset_status()
397 switch (result) { in amdgpu_ctx_query_reset_status()
/third_party/node/deps/openssl/openssl/crypto/evp/
H A Dp_lib.c386 int result = 0; in new_raw_key_int() local
479 result = 1; in new_raw_key_int()
481 if (!result) { in new_raw_key_int()
1003 * On a similar topic, EVP_PKEY_type(EVP_PKEY_SM2) will result in
/third_party/node/deps/openssl/openssl/crypto/poly1305/asm/
H A Dpoly1305-armv8.pl35 # i.e. measured result is worse than expected, presumably binary
210 stp $h0,$h1,[$mac] // write result
863 // write the result, can be partially reduced
922 stp $h0,$h1,[$mac] // write result

Completed in 81 milliseconds

1...<<441442443444445446447448449450>>...469