Home
last modified time | relevance | path

Searched refs:result (Results 3076 - 3100 of 12098) sorted by relevance

1...<<121122123124125126127128129130>>...484

/third_party/skia/third_party/externals/oboe/src/common/
H A DAudioSourceCaller.cpp24 int32_t result = 0; in onProcessFixedBlock() local
29 result = (callbackResult == DataCallbackResult::Continue) in onProcessFixedBlock()
35 result = readResult.value() * mStream->getBytesPerFrame(); in onProcessFixedBlock()
37 return result; in onProcessFixedBlock()
/third_party/skia/third_party/externals/freetype/src/base/
H A Dftgasp.c27 FT_Int result = FT_GASP_NO_TABLE; in FT_EXPORT_DEF() local
48 result = range->gaspFlag; in FT_EXPORT_DEF()
52 result &= 3; in FT_EXPORT_DEF()
56 return result; in FT_EXPORT_DEF()
/third_party/skia/third_party/externals/swiftshader/third_party/marl/src/
H A Dticket_test.cpp24 int result[count] = {}; in TEST_P() local
28 marl::schedule([ticket, i, &result, &next] { in TEST_P()
30 result[next++] = i; in TEST_P()
38 ASSERT_EQ(result[i], i); in TEST_P()
/third_party/typescript/tests/baselines/reference/
H A DasyncMultiFile_es6.js14 function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
H A DbadInferenceLowerPriorityThanGoodInference.js11 const result = canYouInferThis(() => ({
16 result.BLAH;
28 var result = canYouInferThis(function () { return ({ variable
32 result.BLAH;
H A DduplicateVariablesByScope.js16 var result = 1;
19 var result = 2;
47 var result = 1;
50 var result = 2;
H A DexportDefaultAsyncFunction.js12 function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
H A DfixingTypeParametersRepeatedly2.js12 var result = foo(derived, d => d.toBase()); variable
18 var result = bar(derived, d => d.toBase()); variable
22 var result = foo(derived, function (d) { return d.toBase(); }); variable
23 var result = bar(derived, function (d) { return d.toBase(); }); variable
H A DimportCallExpressionNestedES2015.js19 function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
H A DimportCallExpressionNestedES2020.js20 function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
/third_party/skia/third_party/externals/abseil-cpp/absl/debugging/
H A Dstacktrace.h27 // Note: stack traces in Abseil that do not utilize a symbolizer will result in
52 // void* result[10];
54 // int depth = absl::GetStackFrames(result, sizes, 10, 1);
60 // invoked function call. It will therefore return 2 and fill `result` with
63 // result[0] foo()
64 // result[1] main()
80 // available. Also note that `result` and `sizes` must both be non-null.
81 extern int GetStackFrames(void** result, int* sizes, int max_depth,
105 extern int GetStackFramesWithContext(void** result, int* sizes, int max_depth,
122 // void* result[1
[all...]
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/egl/
H A Degl_utils.cpp23 AttributeVector result; in TrimAttributeMap() local
30 result.push_back(forwardAttrib); in TrimAttributeMap()
31 result.push_back(static_cast<int>(attributes.get(forwardAttrib))); in TrimAttributeMap()
34 return result; in TrimAttributeMap()
/third_party/node/deps/simdutf/
H A Dsimdutf.h546 struct result { struct
550 simdutf_really_inline result();
552 simdutf_really_inline result(error_code, size_t);
908 * @return a result pair struct (of type simdutf::error containing the two fields error and count) with an error code and either position of the error (in the input in code units) if any, or the number of code units validated if successful.
910 simdutf_warn_unused result validate_utf8_with_errors(const char *buf, size_t len) noexcept;
931 * @return a result pair struct (of type simdutf::error containing the two fields error and count) with an error code and either position of the error (in the input in code units) if any, or the number of code units validated if successful.
933 simdutf_warn_unused result validate_ascii_with_errors(const char *buf, size_t len) noexcept;
990 * @return a result pair struct (of type simdutf::error containing the two fields error and count) with an error code and either position of the error (in the input in code units) if any, or the number of code units validated if successful.
992 simdutf_warn_unused result validate_utf16_with_errors(const char16_t *buf, size_t len) noexcept;
1004 * @return a result pai
[all...]
/third_party/skia/third_party/externals/spirv-tools/source/opt/
H A Dconst_folding_rules.cpp154 // Check result type. in FoldVectorTimesScalar()
168 // Get a float vector that is the result of vector-times-scalar. in FoldVectorTimesScalar()
175 utils::FloatProxy<float> result(c1_components[i]->GetFloat() * scalar); in FoldVectorTimesScalar()
176 std::vector<uint32_t> words = result.GetWords(); in FoldVectorTimesScalar()
185 utils::FloatProxy<double> result(c1_components[i]->GetDouble() * in FoldVectorTimesScalar()
187 std::vector<uint32_t> words = result.GetWords(); in FoldVectorTimesScalar()
235 // The interface for a function that returns the result of applying a scalar
242 // The interface for a function that returns the result of applying a scalar
302 // Returns the result of folding the constants in |constants| according the
381 uint32_t result
[all...]
/third_party/python/Lib/unittest/test/
H A Dtest_case.py135 # "Return the default type of test result object to be used to run this
144 result = Foo().defaultTestResult()
145 self.assertEqual(type(result), unittest.TestResult)
156 result = LoggingResult(events)
163 Foo(events).run(result)
167 # "With a temporary result stopTestRun is called when setUp errors.
193 result = LoggingResult(events)
202 Foo(events).run(result)
205 # "With a default result, an error in the test still results in stopTestRun
232 result
1919 result = unittest.TestResult() global() variable in .testSkippingEverywhere.Test4
1946 result = unittest.TestResult() global() variable in .testSystemExit.Test4
[all...]
/third_party/vk-gl-cts/modules/gles3/functional/
H A Des3fShaderDerivateTests.cpp402 const tcu::ConstPixelBufferAccess& result, in verifyConstantDerivate()
418 for (int y = 0; y < result.getHeight(); y++) in verifyConstantDerivate()
420 for (int x = 0; x < result.getWidth(); x++) in verifyConstantDerivate()
422 const tcu::Vec4 resDerivate = readDerivate(result, scale, bias, x, y); in verifyConstantDerivate()
466 const tcu::ConstPixelBufferAccess& result, in reverifyConstantDerivateWithFlushRelaxations()
476 DE_ASSERT(result.getWidth() == errorMask.getWidth()); in reverifyConstantDerivateWithFlushRelaxations()
477 DE_ASSERT(result.getHeight() == errorMask.getHeight()); in reverifyConstantDerivateWithFlushRelaxations()
494 for (int y = 0; y < result.getHeight(); ++y) in reverifyConstantDerivateWithFlushRelaxations()
495 for (int x = 0; x < result.getWidth(); ++x) in reverifyConstantDerivateWithFlushRelaxations()
501 const tcu::Vec4 resultDerivative = readDerivate(result, derivScal in reverifyConstantDerivateWithFlushRelaxations()
401 verifyConstantDerivate(tcu::TestLog& log, const tcu::ConstPixelBufferAccess& result, const tcu::PixelBufferAccess& errorMask, glu::DataType dataType, const tcu::Vec4& reference, const tcu::Vec4& threshold, const tcu::Vec4& scale, const tcu::Vec4& bias, VerificationLogging logPolicy = LOG_ALL) verifyConstantDerivate() argument
465 reverifyConstantDerivateWithFlushRelaxations(tcu::TestLog& log, const tcu::ConstPixelBufferAccess& result, const tcu::PixelBufferAccess& errorMask, glu::DataType dataType, glu::Precision precision, const tcu::Vec4& derivScale, const tcu::Vec4& derivBias, const tcu::Vec4& surfaceThreshold, DerivateFunc derivateFunc, const Linear2DFunctionEvaluator& function) reverifyConstantDerivateWithFlushRelaxations() argument
689 tcu::TextureLevel result; iterate() local
975 verify(const tcu::ConstPixelBufferAccess& result, const tcu::PixelBufferAccess& errorMask) verify() argument
1103 verify(const tcu::ConstPixelBufferAccess& result, const tcu::PixelBufferAccess& errorMask) verify() argument
1427 verify(const tcu::ConstPixelBufferAccess& result, const tcu::PixelBufferAccess& errorMask) verify() argument
[all...]
/third_party/node/deps/v8/src/execution/arm64/
H A Dsimulator-logic-arm64.cc52 // An input of 0 is a special case because the result is effectively in UFixedToDouble()
77 // An input of 0 is a special case because the result is effectively in UFixedToFloat()
102 // forced to '1', making the result a quiet NaN. The unused (low-order) in FPToDouble()
171 // forced to '1', making the result a quiet NaN. The unused (low-order) in FPToFloat()
216 // bit is forced to '1', making the result a quiet NaN. in FPToFloat16()
217 float16 result = in FPToFloat16()
219 result |= mantissa >> (kFloatMantissaBits - kFloat16MantissaBits); in FPToFloat16()
220 result |= (1 << (kFloat16MantissaBits - 1)); // Force a quiet NaN; in FPToFloat16()
221 return result; in FPToFloat16()
264 // bit is forced to '1', making the result in FPToFloat16()
593 bool result = false; cmp() local
914 uint16_t result = 0; PolynomialMult() local
1043 uint64_t result[16]; bic() local
1060 uint64_t result = operand1 ^ ((operand1 ^ operand3) & operand2); bif() local
1074 uint64_t result = operand1 ^ ((operand1 ^ operand3) & operand2); bit() local
1088 uint64_t result = operand1 ^ ((operand1 ^ operand3) & operand2); bsl() local
1128 int64_t result[kMaxLanesPerVector]; SMinMaxP() local
1278 uint64_t result[kMaxLanesPerVector]; UMinMaxP() local
1502 uint64_t result[16]; cls() local
1515 uint64_t result[16]; clz() local
1528 uint64_t result[16]; cnt() local
1793 int64_t result; ExtractNarrow() local
1878 uint64_t result[16]; rbit() local
1899 uint64_t result[16]; rev() local
1934 uint64_t result[8]; addlp() local
1979 uint8_t result[16]; ext() local
2053 uint64_t result[16]; orr() local
2153 uint64_t result[kMaxLanesPerVector]; Table() local
2829 uint64_t result[16]; trn1() local
2844 uint64_t result[16]; trn2() local
2859 uint64_t result[16]; zip1() local
2874 uint64_t result[16]; zip2() local
2889 uint64_t result[32]; uzp1() local
2906 uint64_t result[32]; uzp2() local
2922 T result = FPProcessNaNs(op1, op2); FPAdd() local
2977 T result = FPProcessNaNs3(a, op1, op2); FPMulAdd() local
3059 T result = FPProcessNaNs(a, b); FPMax() local
3079 T result = FPProcessNaNs(a, b); FPMaxNM() local
3085 T result = FPProcessNaNs(a, b); FPMin() local
3105 T result = FPProcessNaNs(a, b); FPMinNM() local
3293 T result = FPProcessNaNs(op1, op2); frecps() local
3319 T result = FPProcessNaNs(op1, op2); frsqrts() local
3331 int32_t result; FPToFixedJS() local
3402 bool result = false; fcmp() local
3486 T result = FPMulAdd(acc, op1, op2); fmla() local
3513 T result = FPMulAdd(acc, op1, op2); fmls() local
3593 float result = FPSqrt(src.Float<float>(i)); fsqrt() local
3599 double result = FPSqrt(src.Float<double>(i)); fsqrt() local
3639 float result = (this->*Op)(result1, result2); FMinMaxV() local
4109 uint32_t result; ursqrte() local
4139 uint32_t result; urecpe() local
4161 T result; frecpx() local
4200 float result = FixedToFloat(src.Int(kFormatS, i), fbits, round); scvtf() local
4204 double result = FixedToDouble(src.Int(kFormatD, i), fbits, round); scvtf() local
4216 float result = UFixedToFloat(src.Uint(kFormatS, i), fbits, round); ucvtf() local
4220 double result = UFixedToDouble(src.Uint(kFormatD, i), fbits, round); ucvtf() local
[all...]
/build/toolchain/
H A Dgcc_link_wrapper.py94 result = wrapper_utils.run_link_with_optional_map_file(
96 if result != 0:
97 return result
101 result = subprocess.call(
110 result = subprocess.call(
115 return result
/device/soc/rockchip/common/kernel/drivers/gpu/arm/bifrost/tests/kutf/
H A Dkutf_resultset.c22 /* Kernel UTF result management functions */
34 /* Lock to protect all result structures */
63 /* Create the new result */ in kutf_add_result()
114 struct kutf_result *result = NULL; in kutf_remove_result() local
127 result = list_first_entry(&set->results, in kutf_remove_result()
130 list_del(&result->node); in kutf_remove_result()
132 /* Return a fake result */ in kutf_remove_result()
136 result = &waiting; in kutf_remove_result()
138 /* If result == NULL then there was a race with the event in kutf_remove_result()
144 } while (result in kutf_remove_result()
[all...]
/drivers/hdf_core/framework/support/posix/src/
H A Dosal_time.c73 int result; in OsalMSleep() local
78 result = nanosleep(&ts, &ts); in OsalMSleep()
79 if (result != 0) { in OsalMSleep()
86 int result; in OsalUSleep() local
91 result = nanosleep(&ts, &ts); in OsalUSleep()
92 if (result != 0) { in OsalUSleep()
/test/testfwk/xdevice/plugins/ohos/src/ohos/parser/
H A Dopensource_parser_lite.py66 result = copy.copy(test_result)
67 listener.__started__(LifeCycle.TestCase, result)
77 result = copy.copy(test_result)
78 listener.__ended__(LifeCycle.TestCase, result)
88 result = copy.copy(test_result)
89 listener.__ended__(LifeCycle.TestCase, result)
H A Dbuild_only_parser_lite.py62 result = copy.copy(test_result)
63 listener.__started__(LifeCycle.TestCase, result)
67 result = copy.copy(test_result)
68 listener.__ended__(LifeCycle.TestCase, result)
72 result = copy.copy(test_result)
73 listener.__failed__(LifeCycle.TestCase, result)
/test/xts/acts/commonlibrary/thirdparty/musl/entry/src/main/cpp/
H A Dmntentndk1.cpp79 napi_value result = nullptr; in GetMnTent() local
80 napi_create_int32(env, ret, &result); in GetMnTent()
81 return result; in GetMnTent()
132 napi_value result = nullptr; in GetMnTentR() local
133 napi_create_int32(env, ret, &result); in GetMnTentR()
134 return result; in GetMnTentR()
/test/xts/acts/pcs/pcs_ndk/entry/src/main/cpp/
H A DpcsAudioTest.cpp47 napi_value result = nullptr; in AudioDecoderFlushFirst() local
66 napi_create_int32(env, backParam, &result); in AudioDecoderFlushFirst()
67 return result; in AudioDecoderFlushFirst()
73 napi_value result = nullptr; in AudioDecoderFlushSecond() local
92 napi_create_int32(env, backParam, &result); in AudioDecoderFlushSecond()
93 return result; in AudioDecoderFlushSecond()
/test/xts/device_attest/services/core/adapter/
H A Dattest_adapter_oem.c23 bool result = false; in OEMIsFlagExist() local
26 result = IsFileExist(AUTH_RESULT_PATH, RESET_FLAG_FILE_NAME); in OEMIsFlagExist()
31 return result; in OEMIsFlagExist()
37 int32_t result = ATTEST_ERR; in OEMCreateFlag() local
40 result = CreateFile(AUTH_RESULT_PATH, RESET_FLAG_FILE_NAME); in OEMCreateFlag()
45 return result; in OEMCreateFlag()

Completed in 23 milliseconds

1...<<121122123124125126127128129130>>...484