/third_party/icu/vendor/double-conversion/upstream/double-conversion/ |
H A D | fixed-dtoa.cc | 84 int result = static_cast<int>(high_bits_ >> (power - 64)); in DivModPowerOf2() local 85 high_bits_ -= static_cast<uint64_t>(result) << (power - 64); in DivModPowerOf2() 86 return result; in DivModPowerOf2() 90 int result = static_cast<int>(part_low + part_high); in DivModPowerOf2() local 93 return result; in DivModPowerOf2() 224 // The buffer holds the result. 225 // The function will round its result. During the rounding-process digits not
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
H A D | NumberFormatRegressionTest.java | 136 String result = nf1.format(data[i]); in Test4408066() 137 if (!result.equals(expected[i])) { in Test4408066() 139 + ";Formatted : " + result in Test4408066() 171 + ";result : " + n.toString() in Test4408066() 189 String result = format.format(data); in TestSerialization() 190 assertEquals("Deserialization new version should read old version", expected[i], result); in TestSerialization() 289 errln("Failed: Parsed result for " + data[i] + ": " in TestT5698() 318 errln("Failed: Parsed result for " + data[i] + ": " in TestSurrogatesParsing() 387 errln("FAIL: Parsed result: " + num + " - expected: " + val); in TestT9293()
|
H A D | IntlTestDecimalFormatAPI.java | 256 errln("ERROR: toPattern() result did not match pattern applied"); in TestAPI() 266 errln("ERROR: toLocalizedPattern() result did not match pattern applied"); in TestAPI() 303 errln("ERROR: Math context 1 not equal - result: " + resultICU.toString() + in testJB4971() 315 errln("ERROR: Math context 2 not equal - result: " + resultICU.toString() + in testJB4971() 319 java.math.MathContext result; in testJB4971() 323 result = decfmt.getMathContext(); in testJB4971() 324 if ((comp3.getPrecision() != result.getPrecision()) || in testJB4971() 325 (comp3.getRoundingMode() != result.getRoundingMode())) in testJB4971() 327 errln("ERROR: Math context 3 not equal - result: " + result in testJB4971() [all...] |
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/collator/ |
H A D | CollationKanaTest.java | 189 int result; in TestCommonCharacters() 196 result = rb.compare(string1, string2); in TestCommonCharacters() 201 if ( result != 0 || !key1.equals(key2)) { in TestCommonCharacters() 207 private void doTest(char[] source, char[] target, int result){ in doTest() argument 216 reportCResult(s, t, sortKey1, sortKey2, compareResult, keyResult, compareResult, result); in doTest()
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/format/ |
H A D | NumberFormatRegressionTest.java | 139 String result = nf1.format(data[i]); in Test4408066() 140 if (!result.equals(expected[i])) { in Test4408066() 142 + ";Formatted : " + result in Test4408066() 174 + ";result : " + n.toString() in Test4408066() 192 String result = format.format(data); in TestSerialization() 193 assertEquals("Deserialization new version should read old version", expected[i], result); in TestSerialization() 292 errln("Failed: Parsed result for " + data[i] + ": " in TestT5698() 321 errln("Failed: Parsed result for " + data[i] + ": " in TestSurrogatesParsing() 390 errln("FAIL: Parsed result: " + num + " - expected: " + val); in TestT9293()
|
H A D | IntlTestDecimalFormatAPI.java | 259 errln("ERROR: toPattern() result did not match pattern applied"); in TestAPI() 269 errln("ERROR: toLocalizedPattern() result did not match pattern applied"); in TestAPI() 306 errln("ERROR: Math context 1 not equal - result: " + resultICU.toString() + in testJB4971() 318 errln("ERROR: Math context 2 not equal - result: " + resultICU.toString() + in testJB4971() 322 java.math.MathContext result; in testJB4971() 326 result = decfmt.getMathContext(); in testJB4971() 327 if ((comp3.getPrecision() != result.getPrecision()) || in testJB4971() 328 (comp3.getRoundingMode() != result.getRoundingMode())) in testJB4971() 330 errln("ERROR: Math context 3 not equal - result: " + result in testJB4971() [all...] |
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/number/ |
H A D | MutablePatternModifier.java | 317 int result = AffixUtils.unescapedCount(currentAffix, true, this); // prefix length in getPrefixLength() 318 return result; in getPrefixLength() 325 int result = AffixUtils.unescapedCount(currentAffix, false, this); // prefix length in getCodePointCount() 327 result += AffixUtils.unescapedCount(currentAffix, false, this); // suffix length in getCodePointCount() 328 return result; in getCodePointCount()
|
/third_party/icu/icu4c/source/i18n/ |
H A D | erarules.cpp | 221 EraRules *result; in createInstance() local 223 result = new EraRules(startDates, firstTentativeIdx); in createInstance() 225 result = new EraRules(startDates, numEras); in createInstance() 228 if (result == nullptr) { in createInstance() 231 return result; in createInstance()
|
/third_party/libsnd/src/ALAC/ |
H A D | ag_enc.c | 79 int32_t result ; in lg3a() local 82 result = lead (x) ; in lg3a() 84 return 31 - result ; in lg3a() 92 int32_t result = xorval-isneg ; in abs_func() local 94 return result ; in abs_func()
|
/third_party/libuv/src/win/ |
H A D | thread.c | 36 DWORD result; in uv__once_inner() local 53 result = SetEvent(created_event); in uv__once_inner() 54 assert(result); in uv__once_inner() 61 result = WaitForSingleObject(existing_event, INFINITE); in uv__once_inner() 62 assert(result == WAIT_OBJECT_0); in uv__once_inner()
|
/third_party/mbedtls/programs/test/ |
H A D | selftest.c | 216 int result; in create_entropy_seed_file() local 222 result = mbedtls_platform_std_nv_seed_read(seed_value, in create_entropy_seed_file() 224 if (0 == result) { in create_entropy_seed_file() 228 result = mbedtls_platform_entropy_poll(NULL, in create_entropy_seed_file() 232 if (0 != result) { in create_entropy_seed_file()
|
/third_party/lzma/CPP/Windows/Control/ |
H A D | Dialog.h | 71 BOOL result;
in GetItemInt() local 72 value = GetDlgItemInt(_window, (int)itemID, &result, BoolToBOOL(isSigned));
in GetItemInt() 73 return BOOLToBool(result);
in GetItemInt() 173 bool End(INT_PTR result) { return BOOLToBool(::EndDialog(_window, result)); }
in End() argument
|
/third_party/lame/ACM/ |
H A D | ACMStream.cpp | 314 bool result; in ConvertBuffer() local 341 result = a_StreamHeader->cbDstLengthUsed <= a_StreamHeader->cbDstLength; in ConvertBuffer() 343 my_debug->OutPut(DEBUG_LEVEL_FUNC_CODE, "UsedSize = %d / EncodedSize = %d, result = %d (%d <= %d)", InSize, OutSize, result, a_StreamHeader->cbDstLengthUsed, a_StreamHeader->cbDstLength); in ConvertBuffer() 347 my_debug->OutPut(DEBUG_LEVEL_FUNC_DEBUG, "ACMStream::ConvertBuffer result = %d (0x%02X 0x%02X)",result,a_StreamHeader->pbDst[0],a_StreamHeader->pbDst[1]); in ConvertBuffer() 350 return result; in ConvertBuffer()
|
/third_party/libwebsockets/minimal-examples/dbus-server/minimal-dbus-server/ |
H A D | main.c | 216 DBusHandlerResult result; in server_message_handler() local 231 result = mp->handler(conn, message, &reply, data); in server_message_handler() 233 if (result == DBUS_HANDLER_RESULT_HANDLED && in server_message_handler() 235 result = DBUS_HANDLER_RESULT_NEED_MEMORY; in server_message_handler() 239 return result; in server_message_handler()
|
/third_party/node/lib/internal/debugger/ |
H A D | inspect_client.js | 209 const { id, method, params, result, error } = payload; 214 handler(error, result); 246 this._pending[data.id] = (error, result) => { 248 else resolve(ObjectKeys(result).length ? result : undefined);
|
/third_party/node/lib/internal/streams/ |
H A D | operators.js | 257 for await (const result of filter.call(this, fn, options)) { 258 return result; 355 const result = []; 360 ArrayPrototypePush(result, val); 362 return result;
|
/third_party/node/deps/v8/tools/sanitizers/ |
H A D | sancov_formatter.py | 103 SANCOV_FILE_RE = re.compile(r'^(.*)\.result.sancov$') 203 result = reduce(merge_files, results, {}) 214 'files': {f: map(lambda l: [l, 0], sorted(result[f])) for f in result}, 319 def merge_files(data, result): 320 """Merge result into data. 326 result: New result to be merged in. The type is as returned by 329 file_map, executable = result
|
/third_party/node/test/fixtures/wpt/encoding/streams/ |
H A D | realms.window.js | 92 // The same as evalInRealmAndWait but returns the result of evaluating "code" as 173 const result = await readInReadRealm(objId); 175 assert_equals(result.constructor, constructorRealm.Object, 176 'result should be in constructor realm'); 177 assert_equals(result.value.constructor, constructorRealm.Uint8Array, 187 const result = await chunkPromise; 188 assert_equals(result.constructor, constructorRealm.Object, 189 'result should be in constructor realm'); 190 assert_equals(result.value.constructor, constructorRealm.Uint8Array, 219 const result [all...] |
/third_party/node/deps/icu-small/source/i18n/unicode/ |
H A D | vtzone.h | 153 * @param result Output param to filled in with the VTIMEZONE data. 157 void write(UnicodeString& result, UErrorCode& status) const; 163 * @param result Output param to filled in with the VTIMEZONE data. 167 void write(UDate start, UnicodeString& result, UErrorCode& status) const; 178 * @param result Output param to filled in with the VTIMEZONE data. 182 void writeSimple(UDate time, UnicodeString& result, UErrorCode& status) const; 333 * @param result Receives the first transition after the base time. 337 virtual UBool getNextTransition(UDate base, UBool inclusive, TimeZoneTransition& result) const override; 343 * @param result Receives the most recent transition before the base time. 347 virtual UBool getPreviousTransition(UDate base, UBool inclusive, TimeZoneTransition& result) cons [all...] |
/third_party/node/deps/icu-small/source/i18n/ |
H A D | erarules.cpp | 221 EraRules *result; in createInstance() local 223 result = new EraRules(startDates, firstTentativeIdx); in createInstance() 225 result = new EraRules(startDates, numEras); in createInstance() 228 if (result == nullptr) { in createInstance() 231 return result; in createInstance()
|
H A D | number_patternmodifier.cpp | 227 int result = AffixUtils::unescapedCodePointCount(currentAffix, *this, status); // prefix length in getPrefixLength() local 228 return result; in getPrefixLength() 239 int result = AffixUtils::unescapedCodePointCount(currentAffix, *this, status); // prefix length in getCodePointCount() local 241 result += AffixUtils::unescapedCodePointCount(currentAffix, *this, status); // suffix length in getCodePointCount() 242 return result; in getCodePointCount()
|
/third_party/icu/icu4c/source/i18n/unicode/ |
H A D | ucal.h | 637 * @param result A buffer to receive the result, or NULL 639 * @param resultCapacity The capacity of the result buffer 643 * @return The result string length, not including the terminating 651 ucal_getDefaultTimeZone(UChar* result, int32_t resultCapacity, UErrorCode* ec); 684 * @param result A buffer to receive the result, or NULL 685 * @param resultCapacity The capacity of the result buffer 687 * @return The result string length, not including the terminating 695 ucal_getHostTimeZone(UChar *result, int32_ [all...] |
/third_party/node/deps/v8/src/base/numbers/ |
H A D | fixed-dtoa.cc | 66 int result = static_cast<int>(high_bits_ >> (power - 64)); in DivModPowerOf2() local 67 high_bits_ -= static_cast<uint64_t>(result) << (power - 64); in DivModPowerOf2() 68 return result; in DivModPowerOf2() 72 int result = static_cast<int>(part_low + part_high); in DivModPowerOf2() local 75 return result; in DivModPowerOf2() 197 // The buffer holds the result. 198 // The function will round its result. During the rounding-process digits not
|
/third_party/node/deps/v8/src/bigint/ |
H A D | mul-karatsuba.cc | 69 void KaratsubaSubtractionHelper(RWDigits result, Digits X, Digits Y, in KaratsubaSubtractionHelper() argument 80 result[i] = digit_sub2(X[i], Y[i], borrow, &borrow); in KaratsubaSubtractionHelper() 83 result[i] = digit_sub(X[i], borrow, &borrow); in KaratsubaSubtractionHelper() 86 for (; i < result.len(); i++) result[i] = 0; in KaratsubaSubtractionHelper() 183 // The intermediate result can be one digit too large; the subtraction in KaratsubaMain() 199 // The intermediate result may have been bigger, but the final result fits. in KaratsubaMain()
|
/third_party/node/deps/v8/src/logging/ |
H A D | log-utils.cc | 81 std::unique_ptr<Log::MessageBuilder> result(new Log::MessageBuilder(this)); in NewMessageBuilder() 89 return result; in NewMessageBuilder() 93 FILE* result = nullptr; in Close() local 96 result = output_handle_; in Close() 100 return result; in Close()
|