Home
last modified time | relevance | path

Searched refs:result (Results 10026 - 10050 of 11090) sorted by relevance

1...<<401402403404405406407408409410>>...444

/third_party/node/tools/inspector_protocol/encoding/
H A Dencoding_test.cc24 bool StrToD(const char* str, double* result) const override {
30 *result = std::strtod(str, &end);
46 std::unique_ptr<char[]> result(new char[str.size() + 1]);
47 memcpy(result.get(), str.c_str(), str.size() + 1);
48 return result;
1451 bool StrToD(const char* str, double* result) const override { return false; }
/third_party/mesa3d/src/intel/vulkan/
H A Danv_private.h1466 int anv_gem_reg_read(int fd, uint32_t offset, uint64_t *result);
1585 VkResult result; in anv_batch_emit_reloc() local
1589 result = anv_reloc_list_add_bo(batch->relocs, batch->alloc, bo); in anv_batch_emit_reloc()
1591 result = anv_reloc_list_add(batch->relocs, batch->alloc, in anv_batch_emit_reloc()
1595 if (unlikely(result != VK_SUCCESS)) { in anv_batch_emit_reloc()
1596 anv_batch_set_error(batch, result); in anv_batch_emit_reloc()
/third_party/libphonenumber/cpp/src/phonenumbers/
H A Dphonenumberutil.cc1274 // result in a number we can dial. For this reason, we treat the empty in FormatNationalNumberWithPreferredCarrierCode()
1310 // result in a number we can dial. For this reason, we treat the empty in FormatNumberForMobileDialing()
1350 // reverse is true for mobile numbers. As a result, we output them in in FormatNumberForMobileDialing()
1564 // If no digit is inserted/removed/modified as a result of our formatting, we in FormatInOriginalFormat()
2390 ValidationResult result = IsPossibleNumberWithReason(number); in IsPossibleNumber() local
2391 return result == IS_POSSIBLE || result == IS_POSSIBLE_LOCAL_ONLY; in IsPossibleNumber()
2396 ValidationResult result = IsPossibleNumberForTypeWithReason(number, type); in IsPossibleNumberForType() local
2397 return result == IS_POSSIBLE || result in IsPossibleNumberForType()
[all...]
/third_party/node/deps/v8/src/wasm/baseline/
H A Dliftoff-assembler.h481 // {PeekToRegister(0)} should result in the same register.
760 LiftoffRegister result, StoreType type);
764 LiftoffRegister result, StoreType type);
768 LiftoffRegister result, StoreType type);
772 LiftoffRegister result, StoreType type);
776 LiftoffRegister result, StoreType type);
780 LiftoffRegister result, StoreType type);
/third_party/node/deps/uvwasi/src/
H A Duvwasi.c377 open_req.result, in uvwasi_init()
1157 uvread = req.result; in uvwasi_fd_pread()
1281 uvwritten = req.result; in uvwasi_fd_pwrite()
1328 uvread = req.result; in uvwasi_fd_read()
1629 uvwritten = req.result; in uvwasi_fd_write()
2489 } else if (state.result == 0) { in uvwasi_poll_oneoff()
/third_party/libphonenumber/java/libphonenumber/src/com/google/i18n/phonenumbers/
H A DPhoneNumberUtil.java589 * Warning: This level might result in lower coverage especially for regions outside of country
626 * Warning: This level might result in lower coverage especially for regions outside of country
879 * therefore, it doesn't guarantee the stability of the result it produces.
981 // the form of +54 9 NDC XXXX.... As a result, we take the length of the third group (NDC) and in getLengthOfNationalDestinationCode()
1164 * multiple times will only result in one instance being created.
1452 // found in the input string. However, this doesn't result in a number we can dial. For this in formatNationalNumberWithPreferredCarrierCode()
1491 // found in the input string. However, this doesn't result in a number we can dial. For this in formatNumberForMobileDialing()
1523 // a result, we output them in the international format to make it work. in formatNumberForMobileDialing()
1638 * <p>Note this method guarantees no digit will be inserted, removed or modified as a result of
1729 // If no digit is inserted/removed/modified as a result o in formatInOriginalFormat()
[all...]
/third_party/libphonenumber/javascript/i18n/phonenumbers/
H A Dphonenumberutil.js1328 * changes; therefore, it doesn't guarantee the stability of the result it
1431 // not appear in the array of number groups... so make the result on non-IE
1442 // international format, are in the form of +54 9 NDC XXXX.... As a result,
2012 // result in a number we can dial. For this reason, we treat the empty
2066 // result in a number we can dial. For this reason, we treat the empty
2108 // reverse is true for mobile numbers. As a result, we output them in
2252 * a result of formatting.
2367 // If no digit is inserted/removed/modified as a result of our formatting, we
3421 var result = this.isPossibleNumberWithReason(number);
3422 return result
[all...]
/third_party/rust/crates/cxx/macro/src/
H A Dexpand.rs515 quote!(-> ::cxx::core::result::Result<#ok, ::cxx::Exception>) in expand_cxx_function_shim()
717 expr = quote_spanned!(span=> ::cxx::core::result::Result::Ok(#expr)); in expand_cxx_function_shim()
1095 quote_spanned!(span=> ::cxx::core::result::Result::map(#call, #conversion)) in expand_rust_function_shim_impl()
1169 let ret = if let Some((result, _langle, rangle)) = sig.throws_tokens { in expand_rust_function_shim_super()
1174 // Set spans that result in the `Result<...>` written by the user being in expand_rust_function_shim_super()
1176 let result_begin = quote_spanned!(result.span=> ::cxx::core::result::Result<#ok, impl); in expand_rust_function_shim_super()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/
H A DScheduleDAGRRList.cpp2194 // result number. But that tightly couples the ScheduleDAG with the
2608 int result = BUCompareLatency(left, right, false /*checkPref*/, SPQ);
2609 if (result != 0)
2610 return result > 0;
2691 int result = BUCompareLatency(left, right, true /*checkPref*/, SPQ);
2692 if (result != 0)
2693 return result > 0;
/third_party/skia/src/core/
H A DSkMatrix.cpp99 // that result. in computePerspectiveTypeMask()
786 void SkMatrix::mapXY(SkScalar x, SkScalar y, SkPoint* result) const { in mapXY()
787 SkASSERT(result); in mapXY()
788 this->getMapXYProc()(*this, x, y, result); in mapXY()
1423 SkMatrix tempMap, result; in setPolyToPoly() local
1428 if (!tempMap.invert(&result)) { in setPolyToPoly()
1434 this->setConcat(tempMap, result); in setPolyToPoly()
/third_party/skia/third_party/externals/libpng/contrib/tools/
H A Dpngfix.c168 * number of digits in those values and write the result to the given uarb
169 * (always the first argument) returning the number of digits in the result.
170 * If the result is negative the return value is also negative (this would
178 /* IMPORTANT: only apply this to an array, applied to a pointer the result
183 uarb_set(uarb result, png_alloc_size_t val) in uarb_set() argument
184 /* Set (initialize) 'result' to 'val'. The size required for 'result' must in uarb_set()
192 result[ndigits++] = (png_uint_16)(val & 0xffff); in uarb_set()
215 * or subtracted must be no more than 2^31-65536. A negative result in uarb_inc()
243 else /* negative result */ in uarb_inc()
1315 png_uint_32 result = 0; reread_4() local
[all...]
/third_party/vk-gl-cts/modules/gles2/functional/
H A Des2fRasterizationTests.cpp95 void drawPrimitives (tcu::Surface& result, const std::vector<tcu::Vec4>& vertexData, glw::GLenum primitiveType);
96 void drawPrimitives (tcu::Surface& result, const std::vector<tcu::Vec4>& vertexData, const std::vector<tcu::Vec4>& coloDrata, glw::GLenum primitiveType);
185 void BaseRenderingCase::drawPrimitives (tcu::Surface& result, const std::vector<tcu::Vec4>& vertexData, glw::GLenum primitiveType) in drawPrimitives() argument
190 drawPrimitives(result, vertexData, colorData, primitiveType); in drawPrimitives()
193 void BaseRenderingCase::drawPrimitives (tcu::Surface& result, const std::vector<tcu::Vec4>& vertexData, const std::vector<tcu::Vec4>& colorData, glw::GLenum primitiveType) in drawPrimitives() argument
217 glu::readPixels(m_context.getRenderContext(), 0, 0, result.getAccess()); in drawPrimitives()
282 // result in iterate()
390 // result
484 // result in iterate()
1159 m_testCtx.getLog() << tcu::TestLog::Message << "Verifying result
[all...]
H A Des2fTextureSpecificationTests.cpp466 // Initialize case result to pass. in iterate()
495 tcu::Surface result; in verifyTex2D() local
502 renderTex2D(result, levelW, levelH); in verifyTex2D()
510 bool isOk = tcu::intThresholdCompare(m_testCtx.getLog(), "Result", "Image comparison result", reference.getAccess(), result.getAccess(), threshold, in verifyTex2D()
537 tcu::Surface result; in verifyTexCube() local
544 renderTexCube(result, levelW, levelH, (tcu::CubeFace)face); in verifyTexCube()
551 isOk = tcu::fuzzyCompare(m_testCtx.getLog(), "Result", (string("Image comparison result: ") + de::toString((tcu::CubeFace)face)).c_str(), reference, result, threshold, in verifyTexCube()
/third_party/glfw/src/
H A Dwl_window.c1340 const ssize_t result = read(fds[0], string + length, readSize); in readDataOfferAsString() local
1341 if (result == 0) in readDataOfferAsString()
1343 else if (result == -1) in readDataOfferAsString()
1355 length += result; in readDataOfferAsString()
3110 const ssize_t result = write(fd, string, length); in dataSourceHandleSend() local
3111 if (result == -1) in dataSourceHandleSend()
3122 length -= result; in dataSourceHandleSend()
3123 string += result; in dataSourceHandleSend()
/third_party/mesa3d/src/compiler/nir/
H A Dnir_lower_io.c704 * result in out-of-bound loading/storing of inputs/outputs, in nir_lower_io_block()
1532 nir_ssa_def *result; in build_explicit_io_load() local
1552 result = nir_if_phi(b, &load->dest.ssa, zero); in build_explicit_io_load()
1555 result = &load->dest.ssa; in build_explicit_io_load()
1566 result = nir_b2b1(b, result); in build_explicit_io_load()
1568 result = nir_i2b(b, result); in build_explicit_io_load()
1571 return result; in build_explicit_io_load()
1876 * final result wil in nir_explicit_io_address_from_deref()
[all...]
/third_party/node/deps/v8/src/codegen/ppc/
H A Dassembler-ppc.cc183 Operand result(0, RelocInfo::FULL_EMBEDDED_OBJECT); in EmbeddedNumber()
184 result.is_heap_object_request_ = true; in EmbeddedNumber()
185 result.value_.heap_object_request = HeapObjectRequest(value); in EmbeddedNumber()
186 return result; in EmbeddedNumber()
190 Operand result(0, RelocInfo::FULL_EMBEDDED_OBJECT); in EmbeddedStringConstant()
191 result.is_heap_object_request_ = true; in EmbeddedStringConstant()
192 result.value_.heap_object_request = HeapObjectRequest(str); in EmbeddedStringConstant()
193 return result; in EmbeddedStringConstant()
/third_party/mesa3d/src/nouveau/codegen/
H A Dnv50_ir_from_nir.cpp2959 unsigned int result = target.getArgCount();
2961 result--;
2963 result--;
2964 return result;
3291 bool result = converter.run();
3292 if (!result)
3293 return result;
3297 return result;
/third_party/pcre2/pcre2/src/sljit/
H A DsljitNativeARM_64.c411 #define COUNT_TRAILING_ZERO(value, result) \
412 result = 0; \
414 result += 32; \
418 result += 16; \
422 result += 8; \
426 result += 4; \
430 result += 2; \
434 result += 1; \
/third_party/skia/third_party/externals/sfntly/java/lib/
H A Dicu4j-charset-4_8_1_1.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/services/ com/ com/ibm/ com/ibm/icu/ ...
/third_party/python/Lib/test/
H A Dtest_ast.py20 result = [t.__class__.__name__]
22 result.append((t.lineno, t.col_offset))
24 result[-1] += (t.end_lineno, t.end_col_offset)
26 return tuple(result)
28 result.append(to_tuple(getattr(t, f)))
29 return tuple(result)
1882 result = self.compile_constant(value)
1883 self.assertEqual(result, value)
/applications/standard/contacts_data/contacts/include/
H A Dcontacts_api.h53 void HandleExecuteResult(napi_env env, ExecuteHelper *executeHelper, napi_value &result);
/device/soc/rockchip/common/kernel/drivers/net/wireless/rockchip_wlan/rkwifi/bcmdhd_wifi6/
H A Ddhd_proto.h144 extern int dhdmsgbuf_dmaxfer_status(dhd_pub_t *dhd, dma_xfer_info_t *result);
/device/soc/rockchip/rk3588/kernel/drivers/video/rockchip/rga3/include/
H A Drga_drv.h197 int result; member
/third_party/curl/tests/http/clients/
H A Dh2-pausing.c290 "result %d - wtf?\n", i, handles[i].paused, in main()
291 handles[i].resumed, msg->data.result); in main()
/third_party/elfutils/include/elfutils/
H A Dlibdwfl.h674 bool (*memory_read) (Dwfl *dwfl, Dwarf_Addr addr, Dwarf_Word *result,

Completed in 77 milliseconds

1...<<401402403404405406407408409410>>...444