/aosp_15_r20/external/iptables/utils/ |
H A D | nfnl_osf.c | 274 char *pbeg, *pend; in osf_load_line() local 295 pend = xt_osf_strchr(pbeg, OSFPDEL); in osf_load_line() 296 if (pend) { in osf_load_line() 297 *pend = '\0'; in osf_load_line() 322 pbeg = pend + 1; in osf_load_line() 324 pend = xt_osf_strchr(pbeg, OSFPDEL); in osf_load_line() 325 if (pend) { in osf_load_line() 326 *pend = '\0'; in osf_load_line() 328 pbeg = pend + 1; in osf_load_line() 330 pend = xt_osf_strchr(pbeg, OSFPDEL); in osf_load_line() [all …]
|
/aosp_15_r20/external/toybox/toys/pending/ |
H A D | dhcp.c | 988 uint8_t *pend; in dhcpc_sendmsg() local 1003 pend = state->pdhcp.options; in dhcpc_sendmsg() 1004 pend = dhcpc_addmsgtype(pend, msgtype); in dhcpc_sendmsg() 1006 if (!(toys.optflags & FLAG_C)) pend = dhcpc_addclientid(pend); in dhcpc_sendmsg() 1013 pend = dhcpc_addreqipaddr(&rqsd, pend); in dhcpc_sendmsg() 1015 pend = dhcpc_addmaxsize(pend, htons(sizeof(dhcp_raw_t))); in dhcpc_sendmsg() 1017 pend = dhcpc_addstropt(pend, DHCP_OPTION_VENDOR, vendor, strlen(vendor)); in dhcpc_sendmsg() 1018 …if (toys.optflags & FLAG_H) pend = dhcpc_addstropt(pend, DHCP_OPTION_HOST_NAME, TT.hostname, strle… in dhcpc_sendmsg() 1019 if (toys.optflags & FLAG_F) pend = dhcpc_addfdnname(pend, TT.fdn_name); in dhcpc_sendmsg() 1021 pend = dhcpc_addreqoptions(pend); in dhcpc_sendmsg() [all …]
|
/aosp_15_r20/external/apache-commons-math/src/main/java/org/apache/commons/math/linear/ |
H A D | BlockRealMatrix.java | 229 final int pEnd = FastMath.min(pStart + BLOCK_SIZE, rows); in toBlocksLayout() local 230 final int iHeight = pEnd - pStart; in toBlocksLayout() 242 for (int p = pStart; p < pEnd; ++p) { in toBlocksLayout() 277 final int pEnd = FastMath.min(pStart + BLOCK_SIZE, rows); in createBlocksLayout() local 278 final int iHeight = pEnd - pStart; in createBlocksLayout() 337 final int pEnd = FastMath.min(pStart + BLOCK_SIZE, rows); in add() 341 for (int p = pStart; p < pEnd; ++p) { in add() 410 final int pEnd = FastMath.min(pStart + BLOCK_SIZE, rows); in subtract() 414 for (int p = pStart; p < pEnd; ++p) { in subtract() 519 final int pEnd = FastMath.min(pStart + BLOCK_SIZE, rows); in multiply() [all …]
|
H A D | BlockFieldMatrix.java | 235 final int pEnd = FastMath.min(pStart + BLOCK_SIZE, rows); in toBlocksLayout() local 236 final int iHeight = pEnd - pStart; in toBlocksLayout() 248 for (int p = pStart; p < pEnd; ++p) { in toBlocksLayout() 287 final int pEnd = FastMath.min(pStart + BLOCK_SIZE, rows); in createBlocksLayout() local 288 final int iHeight = pEnd - pStart; in createBlocksLayout() 347 final int pEnd = FastMath.min(pStart + BLOCK_SIZE, rows); in add() 351 for (int p = pStart; p < pEnd; ++p) { in add() 420 final int pEnd = FastMath.min(pStart + BLOCK_SIZE, rows); in subtract() 424 for (int p = pStart; p < pEnd; ++p) { in subtract() 530 final int pEnd = FastMath.min(pStart + BLOCK_SIZE, rows); in multiply() [all …]
|
/aosp_15_r20/external/apache-commons-math/src/main/java/org/apache/commons/math3/linear/ |
H A D | BlockRealMatrix.java | 219 final int pEnd = FastMath.min(pStart + BLOCK_SIZE, rows); in toBlocksLayout() local 220 final int iHeight = pEnd - pStart; in toBlocksLayout() 232 for (int p = pStart; p < pEnd; ++p) { in toBlocksLayout() 263 final int pEnd = FastMath.min(pStart + BLOCK_SIZE, rows); in createBlocksLayout() local 264 final int iHeight = pEnd - pStart; in createBlocksLayout() 318 final int pEnd = FastMath.min(pStart + BLOCK_SIZE, rows); in add() 322 for (int p = pStart; p < pEnd; ++p) { in add() 383 final int pEnd = FastMath.min(pStart + BLOCK_SIZE, rows); in subtract() 387 for (int p = pStart; p < pEnd; ++p) { in subtract() 479 final int pEnd = FastMath.min(pStart + BLOCK_SIZE, rows); in multiply() [all …]
|
H A D | BlockFieldMatrix.java | 226 final int pEnd = FastMath.min(pStart + BLOCK_SIZE, rows); in toBlocksLayout() local 227 final int iHeight = pEnd - pStart; in toBlocksLayout() 239 for (int p = pStart; p < pEnd; ++p) { in toBlocksLayout() 274 final int pEnd = FastMath.min(pStart + BLOCK_SIZE, rows); in createBlocksLayout() local 275 final int iHeight = pEnd - pStart; in createBlocksLayout() 331 final int pEnd = FastMath.min(pStart + BLOCK_SIZE, rows); in add() 335 for (int p = pStart; p < pEnd; ++p) { in add() 400 final int pEnd = FastMath.min(pStart + BLOCK_SIZE, rows); in subtract() 404 for (int p = pStart; p < pEnd; ++p) { in subtract() 501 final int pEnd = FastMath.min(pStart + BLOCK_SIZE, rows); in multiply() [all …]
|
/aosp_15_r20/external/harfbuzz_ng/src/ |
H A D | hb-number.cc | 41 char *pend = p; in _parse_number() local 44 *pv = f (p, &pend); in _parse_number() 45 if (unlikely (errno || p == pend || in _parse_number() 47 (whole_buffer && pend - p != end - *pp))) in _parse_number() 50 *pp += pend - p; in _parse_number() 74 const char *pend = end; in hb_parse_double() local 75 *pv = strtod_rl (*pp, &pend); in hb_parse_double() 76 if (unlikely (*pp == pend)) return false; in hb_parse_double() 77 *pp = pend; in hb_parse_double() 78 return !whole_buffer || end == pend; in hb_parse_double()
|
/aosp_15_r20/external/pigweed/pw_async2/public/pw_async2/ |
H A D | dispatcher_base.h | 51 /// into ``Task::Pend``. 65 /// Queues the current ``Task::Pend`` to run again in the future, possibly 84 /// current task to be ``Pend``'d by its dispatcher. 119 using PendOutputOf = typename decltype(std::declval<T>().Pend( 144 /// ``Pend`` the ``Task`` every time that the ``Task`` indicates it is able 148 /// being ``Pend``'d by a ``Dispatcher``. To protect against this, be sure to 156 /// ``Deregister`` may not be called from inside the ``Task``'s own ``Pend`` 181 // read by the ``Pend`` implementation. in ~Task() 191 /// for ``TaskA`` and ``TaskB``, and could invoke ``Pend`` on these types 193 Poll<> Pend(Context& cx) { return DoPend(cx); } in Pend() function [all …]
|
H A D | coro.h | 183 // The `Context` passed into the coroutine via `Pend`. 194 // Each `co_await` statement creates an `Awaitable` object whose `Pend` 241 // the `Pend` wrapper. 323 // `Poll<U> Pend(Context&)` method, returning an `Awaitable` which will 351 // The `OutputType` in `Poll<OutputType> Pendable::Pend(Context&)`. 354 .Pend(std::declval<Context&>()) 404 Poll<OutputType> poll_res(PendableNoPtr().Pend(cx)); in PendFillReturnValue() 424 /// `Poll<T> Pend(Context&)` method). 450 /// with a `Poll<T> Pend(Context&)` method. The result will be a value of 472 /// this `Coro<T>::Pend` method previously returned a `Ready` value. [all …]
|
H A D | pendable_as_task.h | 22 /// A ``Task`` that delegates to a type with a ``Pend`` method. 24 /// The wrapped type must have a ``Pend`` method which accepts a ``Context&`` 28 /// attempt to invoke ``Pend``. 32 /// Create a new ``Task`` which delegates ``Pend`` to ``pendable``. 43 return pendable_->Pend(cx); in DoPend() 45 return pendable_.Pend(cx); in DoPend()
|
/aosp_15_r20/external/libhevc/encoder/ |
H A D | ihevce_hle_q_func.c | 155 /* these producers threads will be put in pend state */ in ihevce_q_get_free_buff() 162 /* thread is put to pend state */ in ihevce_q_get_free_buff() 169 /* thread is put to pend state */ in ihevce_q_get_free_buff() 180 /* Output data Que : Output thread is put to pend state */ in ihevce_q_get_free_buff() 192 /* Recon data Que : Recon thread is put to pend state */ in ihevce_q_get_free_buff() 197 /* frm prs ent cod data Que : frame process is put to pend state */ in ihevce_q_get_free_buff() 202 /* Pre encode/ encode data Que : pre enocde is put to pend state */ in ihevce_q_get_free_buff() 207 /* ME/ENC Que : enc frame proc is put to pend state */ in ihevce_q_get_free_buff() 223 /* go the pend state */ in ihevce_q_get_free_buff() 418 /* these consumer threads will be put in pend state */ in ihevce_q_get_filled_buff() [all …]
|
/aosp_15_r20/frameworks/compile/mclinker/lib/LD/ |
D | Diagnostic.cpp | 40 const char* pEnd) const { in findMatch() 42 for (; pBegin != pEnd; ++pBegin) { in findMatch() 50 if (pBegin == pEnd) in findMatch() 55 while (pBegin != pEnd && !isdigit(*pBegin) && *pBegin != '{') in findMatch() 58 if (pBegin == pEnd) in findMatch() 65 return pEnd; in findMatch() 71 const char* pEnd, in format() argument 74 while (cur_char != pEnd) { in format() 76 const char* new_end = std::find(cur_char, pEnd, '%'); in format() 102 cur_char = findMatch('}', cur_char, pEnd); in format() [all …]
|
/aosp_15_r20/external/icu/icu4c/source/common/ |
H A D | uloc.cpp | 1186 * setting the *pEnd pointer to where they stopped parsing 1194 const char** pEnd, in _getLanguage() argument 1196 U_ASSERT(pEnd != nullptr); in _getLanguage() 1197 *pEnd = localeID; in _getLanguage() 1221 *pEnd = localeID + len; in _getLanguage() 1255 const char** pEnd) { in _getScript() argument 1256 U_ASSERT(pEnd != nullptr); in _getScript() 1257 *pEnd = localeID; in _getScript() 1269 *pEnd = localeID + LENGTH; in _getScript() 1288 const char** pEnd) { in _getRegion() argument [all …]
|
H A D | uset.cpp | 345 // UChar32* pStart, UChar32* pEnd) { 351 // *pEnd = us->getRangeEnd(rangeIndex); 518 UChar32* pStart, UChar32* pEnd) { in uset_getSerializedRange() argument 522 if(set==nullptr || rangeIndex<0 || pStart==nullptr || pEnd==nullptr) { in uset_getSerializedRange() 534 *pEnd=array[rangeIndex]-1; in uset_getSerializedRange() 536 *pEnd=((((int32_t)array[rangeIndex])<<16)|array[rangeIndex+1])-1; in uset_getSerializedRange() 538 *pEnd=0x10ffff; in uset_getSerializedRange() 550 *pEnd=((((int32_t)array[rangeIndex])<<16)|array[rangeIndex+1])-1; in uset_getSerializedRange() 552 *pEnd=0x10ffff; in uset_getSerializedRange()
|
/aosp_15_r20/external/coreboot/util/kconfig/ |
H A D | regex.c | 526 unsigned char *pend = end; local 535 while (p < pend) 580 assert (p + *p < pend); 855 do {if (p == pend) return REG_EEND; \ 863 do {if (p == pend) return REG_EEND; \ 1020 { if (p != pend) \ 1028 if (p == pend) \ 1086 const char *pend = pattern + size; local 1177 while (p != pend) 1201 p == pend [all …]
|
/aosp_15_r20/external/cronet/third_party/icu/source/samples/layout/ |
H A D | pflow.c | 161 LEUnicode *pEnd = u_strpbrk(pStart, separators); in pf_create() local 165 if (pEnd == NULL) { in pf_create() 166 pEnd = &flow->fChars[charCount]; in pf_create() 169 if (pEnd != pStart) { in pf_create() 170 subsetFontRuns(fontRuns, pStart - flow->fChars, pEnd - flow->fChars, fr); in pf_create() 174 pl_addLocaleRun(locales, TEST_LOCALE, pEnd - pStart); in pf_create() 177 …paragraphLayout = pl_create(pStart, pEnd - pStart, fr, NULL, NULL, locales, flow->fParagraphLevel,… in pf_create() 211 if (*pEnd == 0) { in pf_create() 215 pStart = skipLineEnd(pEnd); in pf_create()
|
H A D | paragraph.cpp | 110 LEUnicode *pEnd = u_strpbrk(pStart, separators); in Paragraph() local 114 if (pEnd == nullptr) { in Paragraph() 115 pEnd = &fChars[charCount]; in Paragraph() 118 if (pEnd != pStart) { in Paragraph() 119 subsetFontRuns(fontRuns, pStart - fChars, pEnd - fChars, &fr); in Paragraph() 121 …paragraphLayout = new ParagraphLayout(pStart, pEnd - pStart, &fr, nullptr, nullptr, locales, fPara… in Paragraph() 156 if (*pEnd == 0) { in Paragraph() 160 pStart = skipLineEnd(pEnd); in Paragraph()
|
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/multi_index/include/boost/multi_index/detail/ |
D | rnd_index_node.hpp | 141 static void extract(ptr_pointer x,ptr_pointer pend) in extract() 143 --pend; in extract() 144 while(x!=pend){ in extract() 161 static void reverse(ptr_pointer pbegin,ptr_pointer pend) in reverse() 163 std::ptrdiff_t d=(pend-pbegin)/2; in reverse() 165 std::swap(*pbegin,*--pend); in reverse() 167 (*pend)->up()=pend; in reverse()
|
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/asio/include/boost/asio/ |
D | basic_streambuf.hpp | 138 std::size_t pend = (std::min<std::size_t>)(max_size_, buffer_delta); in basic_streambuf() local 139 buffer_.resize((std::max<std::size_t>)(pend, 1)); in basic_streambuf() 141 setp(&buffer_[0], &buffer_[0] + pend); in basic_streambuf() 314 std::size_t pend = epptr() - &buffer_[0]; in reserve() local 317 if (n <= pend - pnext) in reserve() 330 if (n > pend - pnext) in reserve() 334 pend = pnext + n; in reserve() 335 buffer_.resize((std::max<std::size_t>)(pend, 1)); in reserve() 346 setp(&buffer_[0] + pnext, &buffer_[0] + pend); in reserve()
|
/aosp_15_r20/external/coreboot/src/vendorcode/cavium/include/bdk/libbdk-arch/ |
H A D | bdk-csrs-fusf.h | 664 * To read an efuse, software writes FUSF_RCMD[ADDR, PEND] with the byte address of 666 * question, then software can poll FUSF_RCMD[PEND]. When [PEND] is clear and if the efuse read 679 … reading fuses directly (ie. [EFUSE] and [PEND] set). */ 681 …uint64_t pend : 1; /**< [ 12: 12](SR/W/H) Software sets this bit on a write to s… member 694 …uint64_t pend : 1; /**< [ 12: 12](SR/W/H) Software sets this bit on a write to s… 701 … reading fuses directly (ie. [EFUSE] and [PEND] set). */ 711 …uint64_t pend : 1; /**< [ 12: 12](SR/W/H) Software sets this bit on a write to s… member 719 … Software should not change this field while the FUSF_RCMD[PEND] is set. 725 … Software should not change this field while the FUSF_RCMD[PEND] is set. 730 …uint64_t pend : 1; /**< [ 12: 12](SR/W/H) Software sets this bit on a write to s… [all …]
|
/aosp_15_r20/external/cronet/third_party/icu/source/common/ |
H A D | uset.cpp | 345 // UChar32* pStart, UChar32* pEnd) { 351 // *pEnd = us->getRangeEnd(rangeIndex); 518 UChar32* pStart, UChar32* pEnd) { in uset_getSerializedRange() argument 522 if(set==nullptr || rangeIndex<0 || pStart==nullptr || pEnd==nullptr) { in uset_getSerializedRange() 534 *pEnd=array[rangeIndex]-1; in uset_getSerializedRange() 536 *pEnd=((((int32_t)array[rangeIndex])<<16)|array[rangeIndex+1])-1; in uset_getSerializedRange() 538 *pEnd=0x10ffff; in uset_getSerializedRange() 550 *pEnd=((((int32_t)array[rangeIndex])<<16)|array[rangeIndex+1])-1; in uset_getSerializedRange() 552 *pEnd=0x10ffff; in uset_getSerializedRange()
|
/aosp_15_r20/external/harfbuzz_ng/util/ |
H A D | helper-subset.hh | 92 char *pend; in parse_axis_position() local 93 values[i] = strtof (s, &pend); in parse_axis_position() 94 if (errno || s == pend || (part && pend != part)) in parse_axis_position() 102 s = pend + 1; in parse_axis_position()
|
/aosp_15_r20/external/cronet/third_party/icu/source/tools/toolutil/ |
H A D | uparse.cpp | 299 uint32_t *pStart, uint32_t *pEnd, in u_parseCodePointRangeAnyTerminator() argument 308 if(s==nullptr || pStart==nullptr || pEnd==nullptr) { in u_parseCodePointRangeAnyTerminator() 320 *pStart=*pEnd=value; in u_parseCodePointRangeAnyTerminator() 336 *pEnd=value; in u_parseCodePointRangeAnyTerminator() 350 uint32_t *pStart, uint32_t *pEnd, in u_parseCodePointRange() argument 354 u_parseCodePointRangeAnyTerminator(s, pStart, pEnd, &terminator, pErrorCode); in u_parseCodePointRange()
|
/aosp_15_r20/external/icu/icu4c/source/tools/toolutil/ |
H A D | uparse.cpp | 299 uint32_t *pStart, uint32_t *pEnd, in u_parseCodePointRangeAnyTerminator() argument 308 if(s==nullptr || pStart==nullptr || pEnd==nullptr) { in u_parseCodePointRangeAnyTerminator() 320 *pStart=*pEnd=value; in u_parseCodePointRangeAnyTerminator() 336 *pEnd=value; in u_parseCodePointRangeAnyTerminator() 350 uint32_t *pStart, uint32_t *pEnd, in u_parseCodePointRange() argument 354 u_parseCodePointRangeAnyTerminator(s, pStart, pEnd, &terminator, pErrorCode); in u_parseCodePointRange()
|
/aosp_15_r20/external/swiftshader/third_party/llvm-subzero/lib/Support/ |
H A D | regcomp.c | 75 sopno pend[NPAREN]; /* -> ) ([0] unused) */ member 210 p->pend[i] = 0; in llvm_regcomp() 333 p->pend[subno] = HERE(); in p_ere_exp() 334 assert(p->pend[subno] != 0); in p_ere_exp() 389 if (p->pend[backrefnum] == 0) { in p_ere_exp() 401 assert(OP(p->strip[p->pend[backrefnum]]) != ORPAREN); in p_ere_exp() 402 (void) dupl(p, p->pbegin[backrefnum]+1, p->pend[backrefnum]); in p_ere_exp() 574 p->pend[subno] = HERE(); in p_simp_re() 575 assert(p->pend[subno] != 0); in p_simp_re() 595 if (p->pend[i] != 0) { in p_simp_re() [all …]
|