Home
last modified time | relevance | path

Searched refs:end (Results 901 - 925 of 11851) sorted by relevance

1...<<31323334353637383940>>...475

/third_party/bounds_checking_function/src/
H A Dvswscanf_s.c23 const wchar_t *end = s; in SecWcslen() local
24 while (*end != L'\0') { in SecWcslen()
25 ++end; in SecWcslen()
27 return ((size_t)((end - s))); in SecWcslen()
/third_party/json/tests/src/
H A Dunit-meta.cpp31 CHECK(j.find("platform") != j.end());
32 CHECK(j.at("compiler").find("family") != j.at("compiler").end());
33 CHECK(j.at("compiler").find("version") != j.at("compiler").end());
34 CHECK(j.at("compiler").find("c++") != j.at("compiler").end());
H A Dunit-user_defined_input.cpp21 std::list<char> data(raw_data.begin(), raw_data.end());
23 json as_json = json::parse(data.begin(), data.end());
40 const char* end(const MyContainer& c) in end() function
45 TEST_CASE("Custom container non-member begin/end")
57 TEST_CASE("Custom container member begin/end")
68 const char* end() const in end() function
121 MyIterator end{raw_data + strlen(raw_data)}; // NOLINT(cppcoreguidelines-pro-bounds-pointer-arithmetic)
123 json as_json = json::parse(begin, end);
/third_party/node/lib/stream/
H A Dpromises.js15 const { finished } = require('internal/streams/end-of-stream');
22 let end;
28 end = options.end;
37 }, { signal, end });
/third_party/mesa3d/src/util/
H A Dos_time.h91 int64_t end, in os_time_timeout()
94 if (start <= end) in os_time_timeout()
95 return !(start <= curr && curr < end); in os_time_timeout()
97 return !((start <= curr) || (curr < end)); in os_time_timeout()
90 os_time_timeout(int64_t start, int64_t end, int64_t curr) os_time_timeout() argument
/third_party/musl/libc-test/src/functionalext/supplement/stdlib/
H A Dwcstoumax.c39 wchar_t *end = NULL; in wcstoumax_0100() local
41 uintmax_t result = wcstoumax(L" +123x", &end, 10); in wcstoumax_0100()
45 if (wcscmp(end, L"x") != 0) { in wcstoumax_0100()
46 t_error("%s wcstoumax get end is %ls are not want x\n", __func__, end); in wcstoumax_0100()
H A Dwcstoimax.c39 wchar_t *end = NULL; in wcstoimax_0100() local
41 intmax_t result = wcstoimax(L" +123x", &end, 10); in wcstoimax_0100()
45 if (wcscmp(end, L"x") != 0) { in wcstoimax_0100()
46 t_error("%s wcstoimax get end is %ls are not want x\n", __func__, end); in wcstoimax_0100()
/third_party/skia/third_party/externals/oboe/apps/fxlab/app/src/main/cpp/effects/
H A DDriveControl.h30 void operator() (iter_type beg, iter_type end) { in operator ()() argument
31 std::for_each(beg, end, [this](auto &x){x *= kScale;}); in operator ()()
32 mFunction(beg, end); in operator ()()
33 std::for_each(beg, end, [this](auto &x){x *= recip;}); in operator ()()
/third_party/typescript/tests/baselines/reference/
H A DExportFunctionWithAccessibleTypesInParameterAndReturnTypeAnnotation.js10 constructor(public start: Point, public end: Point) { }
28 function Line(start, end) {
30 this.end = end;
H A DExportFunctionWithInaccessibleTypesInParameterTypeAnnotation.js10 constructor(public start: Point, public end: Point) { }
27 function Line(start, end) {
29 this.end = end;
H A DExportFunctionWithInaccessibleTypesInReturnTypeAnnotation.js10 constructor(public start: Point, public end: Point) { }
28 function Line(start, end) {
30 this.end = end;
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/
H A Dcharconv_parse.h72 // One-past-the-end of the successfully parsed region, or nullptr if no
74 const char* end = nullptr; member
88 ParsedFloat ParseFloat(const char* begin, const char* end,
91 extern template ParsedFloat ParseFloat<10>(const char* begin, const char* end,
93 extern template ParsedFloat ParseFloat<16>(const char* begin, const char* end,
/drivers/peripheral/codec/hal/idl_service/src/
H A Dcodec_death_recipient.cpp38 if (remoteComps == g_remoteCompsMap.end()) { in CleanResourceOfDiedService()
46 for (auto id = compIds.begin(); id != compIds.end(); id++) { in CleanResourceOfDiedService()
61 if (remoteComps != g_remoteCompsMap.end()) { in RegisterDeathRecipientService()
86 if (compRemote == g_compRemoteMap.end()) { in RemoveMapperOfDestoryedComponent()
92 if (remoteComps == g_remoteCompsMap.end()) { in RemoveMapperOfDestoryedComponent()
102 if (deathReci == g_deathReciMap.end()) { in RemoveMapperOfDestoryedComponent()
/drivers/peripheral/usb/gadget/function/include/
H A Ddata_fifo.h89 uint8_t *end; in DataFifoWrite() local
92 end = data + size; in DataFifoWrite()
93 while (data < end) { in DataFifoWrite()
103 uint8_t *end; in DataFifoRead() local
106 end = data + size; in DataFifoRead()
107 while (data < end) { in DataFifoRead()
/drivers/peripheral/power/interfaces/hdi_service/src/
H A Drunning_lock_timer_handler.cpp78 if (typeIter != runninglockTimerMap_.end()) { in GetRunningLockTimerId()
80 if (nameIter != typeIter->second.end()) { in GetRunningLockTimerId()
90 if (typeIter == runninglockTimerMap_.end()) { in AddRunningLockTimerMap()
97 if (nameIter == typeIter->second.end()) { in AddRunningLockTimerMap()
107 if (typeIter != runninglockTimerMap_.end()) { in RemoveRunningLockTimerMap()
109 if (nameIter != typeIter->second.end()) { in RemoveRunningLockTimerMap()
/drivers/peripheral/usb/test/unittest/host_sdk/
H A Ddata_fifo.h90 uint8_t *end; in DataFifoWrite() local
93 end = data + size; in DataFifoWrite()
94 while (data < end) { in DataFifoWrite()
104 uint8_t *end; in DataFifoRead() local
107 end = data + size; in DataFifoRead()
108 while (data < end) { in DataFifoRead()
/third_party/ffmpeg/libavcodec/loongarch/
H A Dh264_cabac.c31 void *end = significant_coeff_ctx_base + max_coeff - 1; in decode_significance_loongarch() local
58 "blt %[state], %[end], 3b \n\t" in decode_significance_loongarch()
67 : [tables]"r"(ff_h264_cabac_tables), [end]"r"(end), [one]"r"(one), in decode_significance_loongarch()
89 int64_t bit, tmp0, tmp1, tmp2, one = 1, end = 63, last = 0; in decode_significance_8x8_loongarch() local
116 "blt %[last], %[end], 3b \n\t" in decode_significance_8x8_loongarch()
125 : [tables]"r"(ff_h264_cabac_tables), [end]"r"(end), in decode_significance_8x8_loongarch()
/third_party/ffmpeg/libavcodec/
H A Dpnm_parser.c58 goto end; in pnm_parse()
85 const uint8_t *end = pnmctx.bytestream_end; in pnm_parse() local
89 av_assert0(pnmpc->ascii_scan <= end - bs); in pnm_parse()
93 while (bs < end) { in pnm_parse()
98 uint8_t *match = memchr(bs, '\n', end-bs); in pnm_parse()
125 end: in pnm_parse()
/third_party/elfutils/libdw/
H A Ddwarf_entry_breakpoints.c62 /* Search a contiguous PC range for prologue-end markers.
127 Dwarf_Addr end; in dwarf_entry_breakpoints() local
128 ptrdiff_t offset = INTUSE(dwarf_ranges) (die, 0, &base, &begin, &end); in dwarf_entry_breakpoints()
134 return search_range (begin, end, true, true, lines, nlines, bkpts, &nbkpts) in dwarf_entry_breakpoints()
142 if (search_range (begin, end, true, false, in dwarf_entry_breakpoints()
149 highpc = end; in dwarf_entry_breakpoints()
152 offset = INTUSE(dwarf_ranges) (die, offset, &base, &begin, &end); in dwarf_entry_breakpoints()
/third_party/icu/icu4c/source/common/
H A Dcstring.h75 #define uprv_strtod(source, end) U_STANDARD_CPP_NAMESPACE strtod(source, end)
76 #define uprv_strtoul(str, end, base) U_STANDARD_CPP_NAMESPACE strtoul(str, end, base)
77 #define uprv_strtol(str, end, base) U_STANDARD_CPP_NAMESPACE strtol(str, end, base)
/third_party/icu/icu4c/source/i18n/
H A Dcollationsets.h57 UBool handleCE32(UChar32 start, UChar32 end, uint32_t ce32);
110 void handleCE32(UChar32 start, UChar32 end, uint32_t ce32);
112 void handlePrefixes(UChar32 start, UChar32 end, uint32_t ce32);
113 void handleContractions(UChar32 start, UChar32 end, uint32_t ce32);
115 void addExpansions(UChar32 start, UChar32 end);
116 void addStrings(UChar32 start, UChar32 end, UnicodeSet *set);
/third_party/mesa3d/src/imagination/vulkan/
H A Dpvr_csb.c81 csb->end = NULL; in pvr_csb_init()
113 * current buffer, a few bytes are reserved at the end, every time a buffer is
154 csb->end += stream_link_space; in pvr_csb_buffer_extend()
155 assert(csb->next + stream_link_space <= csb->end); in pvr_csb_buffer_extend()
189 /* Reserve stream link size at the end to make sure we don't run out of in pvr_csb_buffer_extend()
192 csb->end = csb->start + pvr_bo->bo->size - stream_link_space; in pvr_csb_buffer_extend()
218 if (csb->next + required_space > csb->end) { in pvr_csb_alloc_dwords()
227 assert(csb->next <= csb->end); in pvr_csb_alloc_dwords()
234 * csb object. Given a VDMCTRL_STREAM_RETURN marks the end of the sub control
254 * object. Given a STREAM_TERMINATE marks the end o
[all...]
/third_party/node/lib/internal/
H A Dblocklist.js72 addRange(start, end, family = 'ipv4') {
81 if (!SocketAddress.isSocketAddress(end)) {
82 validateString(end, 'end');
84 end = new SocketAddress({
85 address: end,
91 end[kSocketAddressHandle]);
93 throw new ERR_INVALID_ARG_VALUE('start', start, 'must come before end');
/third_party/node/deps/icu-small/source/common/
H A Dcstring.h75 #define uprv_strtod(source, end) U_STANDARD_CPP_NAMESPACE strtod(source, end)
76 #define uprv_strtoul(str, end, base) U_STANDARD_CPP_NAMESPACE strtoul(str, end, base)
77 #define uprv_strtol(str, end, base) U_STANDARD_CPP_NAMESPACE strtol(str, end, base)
/third_party/node/deps/icu-small/source/i18n/
H A Dcollationsets.h57 UBool handleCE32(UChar32 start, UChar32 end, uint32_t ce32);
110 void handleCE32(UChar32 start, UChar32 end, uint32_t ce32);
112 void handlePrefixes(UChar32 start, UChar32 end, uint32_t ce32);
113 void handleContractions(UChar32 start, UChar32 end, uint32_t ce32);
115 void addExpansions(UChar32 start, UChar32 end);
116 void addStrings(UChar32 start, UChar32 end, UnicodeSet *set);

Completed in 9 milliseconds

1...<<31323334353637383940>>...475