Home
last modified time | relevance | path

Searched refs:pe (Results 1 – 25 of 511) sorted by relevance

12345678910>>...21

/third_party/skia/third_party/externals/icu/source/common/
Ducase.cpp140 const uint16_t *pe=GET_EXCEPTIONS(&ucase_props_singleton, props); in ucase_tolower() local
141 uint16_t excWord=*pe++; in ucase_tolower()
144 GET_SLOT_VALUE(excWord, UCASE_EXC_DELTA, pe, delta); in ucase_tolower()
148 GET_SLOT_VALUE(excWord, UCASE_EXC_LOWER, pe, c); in ucase_tolower()
162 const uint16_t *pe=GET_EXCEPTIONS(&ucase_props_singleton, props); in ucase_toupper() local
163 uint16_t excWord=*pe++; in ucase_toupper()
166 GET_SLOT_VALUE(excWord, UCASE_EXC_DELTA, pe, delta); in ucase_toupper()
170 GET_SLOT_VALUE(excWord, UCASE_EXC_UPPER, pe, c); in ucase_toupper()
184 const uint16_t *pe=GET_EXCEPTIONS(&ucase_props_singleton, props); in ucase_totitle() local
185 uint16_t excWord=*pe++; in ucase_totitle()
[all …]
/third_party/flutter/skia/third_party/externals/icu/source/common/
Ducase.cpp139 const uint16_t *pe=GET_EXCEPTIONS(&ucase_props_singleton, props); in ucase_tolower() local
140 uint16_t excWord=*pe++; in ucase_tolower()
143 GET_SLOT_VALUE(excWord, UCASE_EXC_DELTA, pe, delta); in ucase_tolower()
147 GET_SLOT_VALUE(excWord, UCASE_EXC_LOWER, pe, c); in ucase_tolower()
161 const uint16_t *pe=GET_EXCEPTIONS(&ucase_props_singleton, props); in ucase_toupper() local
162 uint16_t excWord=*pe++; in ucase_toupper()
165 GET_SLOT_VALUE(excWord, UCASE_EXC_DELTA, pe, delta); in ucase_toupper()
169 GET_SLOT_VALUE(excWord, UCASE_EXC_UPPER, pe, c); in ucase_toupper()
183 const uint16_t *pe=GET_EXCEPTIONS(&ucase_props_singleton, props); in ucase_totitle() local
184 uint16_t excWord=*pe++; in ucase_totitle()
[all …]
/third_party/node/deps/icu-small/source/common/
Ducase.cpp140 const uint16_t *pe=GET_EXCEPTIONS(&ucase_props_singleton, props); in ucase_tolower() local
141 uint16_t excWord=*pe++; in ucase_tolower()
144 GET_SLOT_VALUE(excWord, UCASE_EXC_DELTA, pe, delta); in ucase_tolower()
148 GET_SLOT_VALUE(excWord, UCASE_EXC_LOWER, pe, c); in ucase_tolower()
162 const uint16_t *pe=GET_EXCEPTIONS(&ucase_props_singleton, props); in ucase_toupper() local
163 uint16_t excWord=*pe++; in ucase_toupper()
166 GET_SLOT_VALUE(excWord, UCASE_EXC_DELTA, pe, delta); in ucase_toupper()
170 GET_SLOT_VALUE(excWord, UCASE_EXC_UPPER, pe, c); in ucase_toupper()
184 const uint16_t *pe=GET_EXCEPTIONS(&ucase_props_singleton, props); in ucase_totitle() local
185 uint16_t excWord=*pe++; in ucase_totitle()
[all …]
/third_party/icu/icu4c/source/common/
Ducase.cpp140 const uint16_t *pe=GET_EXCEPTIONS(&ucase_props_singleton, props); in ucase_tolower() local
141 uint16_t excWord=*pe++; in ucase_tolower()
144 GET_SLOT_VALUE(excWord, UCASE_EXC_DELTA, pe, delta); in ucase_tolower()
148 GET_SLOT_VALUE(excWord, UCASE_EXC_LOWER, pe, c); in ucase_tolower()
162 const uint16_t *pe=GET_EXCEPTIONS(&ucase_props_singleton, props); in ucase_toupper() local
163 uint16_t excWord=*pe++; in ucase_toupper()
166 GET_SLOT_VALUE(excWord, UCASE_EXC_DELTA, pe, delta); in ucase_toupper()
170 GET_SLOT_VALUE(excWord, UCASE_EXC_UPPER, pe, c); in ucase_toupper()
184 const uint16_t *pe=GET_EXCEPTIONS(&ucase_props_singleton, props); in ucase_totitle() local
185 uint16_t excWord=*pe++; in ucase_totitle()
[all …]
/third_party/toybox/toys/pending/
Dfdisk.c207 struct part_entry *pe; in check_order() local
212 pe = &partitions[i]; in check_order()
213 px = pe->part; in check_order()
215 first[i] = swap_le32toh(px->start4) + pe->start_offset; in check_order()
303 struct part_entry *pe = &partitions[i]; in reset_boot() local
304 pe->part = part_offset(MBRbuf, i); in reset_boot()
305 pe->start_offset = 0; in reset_boot()
306 pe->sec_buffer = MBRbuf; in reset_boot()
307 pe->modified = change; in reset_boot()
576 struct part_entry *pe = &partitions[i]; in delete_partition() local
[all …]
/third_party/boost/libs/interprocess/test/
Doffset_ptr_test.cpp154 pint_t pe = &values[NumValues]; in test_arithmetic() local
155 BOOST_TEST(pe != p); in test_arithmetic()
156 BOOST_TEST(pe.get() == &values[NumValues]); in test_arithmetic()
159 BOOST_TEST((pe - p) == NumValues); in test_arithmetic()
162 BOOST_TEST((pe - NumValues) == p); in test_arithmetic()
165 BOOST_TEST((p + NumValues) == pe); in test_arithmetic()
168 BOOST_TEST((NumValues + p) == pe); in test_arithmetic()
171 BOOST_TEST(pint_t(&p[NumValues]) == pe); in test_arithmetic()
172 BOOST_TEST(pint_t(&pe[-NumValues]) == p); in test_arithmetic()
175 pint_t p0 = pe; in test_arithmetic()
[all …]
/third_party/boost/libs/regex/performance/
Dpcre.cpp20 pcre2_code* pe; member
24 : pe(0) in pcre_regex()
30 if(pe) in ~pcre_regex()
31 pcre2_code_free(pe); in ~pcre_regex()
38 if(pe) in set_expression()
39 pcre2_code_free(pe); in set_expression()
42pe = pcre2_compile((PCRE2_SPTR)pat, std::strlen(pat), PCRE2_MULTILINE, &errorcode, &erroroffset, N… in set_expression()
43 return pe ? true : false; in set_expression()
65 int r = pcre2_match(pe, (PCRE2_SPTR)text, std::strlen(text), 0, PCRE2_ANCHORED, pdata, NULL); in match_test()
74 while(pcre2_match(pe, (PCRE2_SPTR)text, end - text, 0, flags, pdata, NULL) >= 0) in find_all()
Dposix.cpp17 regex_t pe, pe2; member
25 regfree(&pe); in ~posix_regex()
35 regfree(&pe); in set_expression()
40 int r = regcomp(&pe, pat, REG_EXTENDED); in set_expression()
79 while(regexec(&pe, text, 30, m, flags) == 0) in find_all()
/third_party/ffmpeg/libavcodec/
Daacpsy.c114 float pe; ///< perceptual entropy member
160 } pe; member
327 pctx->pe.min = 8.0f * AAC_BLOCK_SIZE_LONG * bandwidth / (ctx->avctx->sample_rate * 2.0f); in psy_3gpp_init()
328 pctx->pe.max = 12.0f * AAC_BLOCK_SIZE_LONG * bandwidth / (ctx->avctx->sample_rate * 2.0f); in psy_3gpp_init()
494 static int calc_bit_demand(AacPsyContext *ctx, float pe, int bits, int size, in calc_bit_demand() argument
508 clipped_pe = av_clipf(pe, ctx->pe.min, ctx->pe.max); in calc_bit_demand()
519 … = 1.0f - bit_save + ((bit_spend - bit_save) / (ctx->pe.max - ctx->pe.min)) * (clipped_pe - ctx->p… in calc_bit_demand()
524 ctx->pe.max = FFMAX(pe, ctx->pe.max); in calc_bit_demand()
525 forgetful_min_pe = ((ctx->pe.min * PSY_PE_FORGET_SLOPE) in calc_bit_demand()
526 + FFMAX(ctx->pe.min, pe * (pe / ctx->pe.max))) / (PSY_PE_FORGET_SLOPE + 1); in calc_bit_demand()
[all …]
/third_party/ltp/testcases/kernel/connectors/pec/
Dpec_listener.c180 struct proc_event *pe; in process_event() local
184 pe = (struct proc_event *)msg->data; in process_event()
187 switch (pe->what) { in process_event()
189 printf("none err: %u\n", pe->event_data.ack.err); in process_event()
193 pe->event_data.fork.parent_pid, in process_event()
194 pe->event_data.fork.child_pid); in process_event()
197 printf("exec pid: %d\n", pe->event_data.exec.process_pid); in process_event()
201 pe->event_data.id.process_pid, in process_event()
202 pe->event_data.id.e.euid, pe->event_data.id.r.ruid); in process_event()
206 pe->event_data.id.process_pid, in process_event()
[all …]
/third_party/flatbuffers/include/flatbuffers/
Dutil.h234 #define __strtoull_impl(s, pe, b) _strtoui64_l(s, pe, b, ClassicLocale::Get()) argument
235 #define __strtoll_impl(s, pe, b) _strtoi64_l(s, pe, b, ClassicLocale::Get()) argument
236 #define __strtod_impl(s, pe) _strtod_l(s, pe, ClassicLocale::Get()) argument
237 #define __strtof_impl(s, pe) _strtof_l(s, pe, ClassicLocale::Get()) argument
239 #define __strtoull_impl(s, pe, b) strtoull_l(s, pe, b, ClassicLocale::Get()) argument
240 #define __strtoll_impl(s, pe, b) strtoll_l(s, pe, b, ClassicLocale::Get()) argument
241 #define __strtod_impl(s, pe) strtod_l(s, pe, ClassicLocale::Get()) argument
242 #define __strtof_impl(s, pe) strtof_l(s, pe, ClassicLocale::Get()) argument
245 #define __strtod_impl(s, pe) strtod(s, pe) argument
246 #define __strtof_impl(s, pe) static_cast<float>(strtod(s, pe)) argument
[all …]
/third_party/node/deps/icu-small/source/i18n/
Duspoof_build.cpp53 int32_t *errorType, UParseError *pe, UErrorCode *status) { in uspoof_openFromSource() argument
65 if (pe != NULL) { in uspoof_openFromSource()
66 pe->line = 0; in uspoof_openFromSource()
67 pe->offset = 0; in uspoof_openFromSource()
68 pe->preContext[0] = 0; in uspoof_openFromSource()
69 pe->postContext[0] = 0; in uspoof_openFromSource()
98 …ConfusabledataBuilder::buildConfusableData(This, confusables, confusablesLen, errorType, pe, *stat… in uspoof_openFromSource()
/third_party/flutter/skia/third_party/externals/icu/source/i18n/
Duspoof_build.cpp53 int32_t *errorType, UParseError *pe, UErrorCode *status) { in uspoof_openFromSource() argument
65 if (pe != NULL) { in uspoof_openFromSource()
66 pe->line = 0; in uspoof_openFromSource()
67 pe->offset = 0; in uspoof_openFromSource()
68 pe->preContext[0] = 0; in uspoof_openFromSource()
69 pe->postContext[0] = 0; in uspoof_openFromSource()
98 …ConfusabledataBuilder::buildConfusableData(This, confusables, confusablesLen, errorType, pe, *stat… in uspoof_openFromSource()
/third_party/icu/icu4c/source/i18n/
Duspoof_build.cpp53 int32_t *errorType, UParseError *pe, UErrorCode *status) { in uspoof_openFromSource() argument
65 if (pe != NULL) { in uspoof_openFromSource()
66 pe->line = 0; in uspoof_openFromSource()
67 pe->offset = 0; in uspoof_openFromSource()
68 pe->preContext[0] = 0; in uspoof_openFromSource()
69 pe->postContext[0] = 0; in uspoof_openFromSource()
98 …ConfusabledataBuilder::buildConfusableData(This, confusables, confusablesLen, errorType, pe, *stat… in uspoof_openFromSource()
/third_party/skia/third_party/externals/icu/source/i18n/
Duspoof_build.cpp53 int32_t *errorType, UParseError *pe, UErrorCode *status) { in uspoof_openFromSource() argument
65 if (pe != NULL) { in uspoof_openFromSource()
66 pe->line = 0; in uspoof_openFromSource()
67 pe->offset = 0; in uspoof_openFromSource()
68 pe->preContext[0] = 0; in uspoof_openFromSource()
69 pe->postContext[0] = 0; in uspoof_openFromSource()
98 …ConfusabledataBuilder::buildConfusableData(This, confusables, confusablesLen, errorType, pe, *stat… in uspoof_openFromSource()
/third_party/flutter/skia/tests/
DAsADashTest.cpp17 sk_sp<SkPathEffect> pe(SkCornerPathEffect::Make(1.0)); in DEF_TEST() local
20 SkPathEffect::DashType dashType = pe->asADash(&info); in DEF_TEST()
27 sk_sp<SkPathEffect> pe(SkDashPathEffect::Make(inIntervals, 4, phase)); in DEF_TEST() local
29 SkPathEffect::DashType dashType = pe->asADash(nullptr); in DEF_TEST()
38 sk_sp<SkPathEffect> pe(SkDashPathEffect::Make(inIntervals, 4, phase)); in DEF_TEST() local
42 SkPathEffect::DashType dashType = pe->asADash(&info); in DEF_TEST()
50 pe->asADash(&info); in DEF_TEST()
/third_party/skia/tests/
DAsADashTest.cpp17 sk_sp<SkPathEffect> pe(SkCornerPathEffect::Make(1.0)); in DEF_TEST() local
20 SkPathEffect::DashType dashType = pe->asADash(&info); in DEF_TEST()
27 sk_sp<SkPathEffect> pe(SkDashPathEffect::Make(inIntervals, 4, phase)); in DEF_TEST() local
29 SkPathEffect::DashType dashType = pe->asADash(nullptr); in DEF_TEST()
38 sk_sp<SkPathEffect> pe(SkDashPathEffect::Make(inIntervals, 4, phase)); in DEF_TEST() local
42 SkPathEffect::DashType dashType = pe->asADash(&info); in DEF_TEST()
50 pe->asADash(&info); in DEF_TEST()
/third_party/ltp/testcases/kernel/syscalls/perf_event_open/
Dperf_event_open01.c79 static struct perf_event_attr pe; variable
114 pe.size = sizeof(struct perf_event_attr); in setup()
115 pe.disabled = 1; in setup()
116 pe.exclude_kernel = 1; in setup()
117 pe.exclude_hv = 1; in setup()
147 pe.type = tc->type; in verify()
148 pe.config = tc->config; in verify()
150 TEST(perf_event_open(&pe, 0, -1, -1, 0)); in verify()
/third_party/skia/third_party/externals/icu/source/data/unit/
Dro.txt19 dnam{"metri pe secundă la pătrat"}
20 few{"{0} metri pe secundă la pătrat"}
21 one{"{0} metru pe secundă la pătrat"}
22 other{"{0} de metri pe secundă la pătrat"}
81 per{"{0} pe centimetru pătrat"}
94 per{"{0} pe inchi pătrat"}
101 per{"{0} pe kilometru pătrat"}
108 per{"{0} pe metru pătrat"}
115 per{"{0} pe milă pătrată"}
153 per{"{0} pe {1}"}
[all …]
/third_party/icu/icu4c/source/data/unit/
Dro.txt19 dnam{"metri pe secundă la pătrat"}
20 few{"{0} metri pe secundă la pătrat"}
21 one{"{0} metru pe secundă la pătrat"}
22 other{"{0} de metri pe secundă la pătrat"}
81 per{"{0} pe centimetru pătrat"}
94 per{"{0} pe inchi pătrat"}
101 per{"{0} pe kilometru pătrat"}
108 per{"{0} pe metru pătrat"}
115 per{"{0} pe milă pătrată"}
153 per{"{0} pe {1}"}
[all …]
/third_party/flutter/skia/third_party/externals/icu/source/data/unit/
Dro.txt19 dnam{"metri pe secundă la pătrat"}
20 few{"{0} metri pe secundă la pătrat"}
21 one{"{0} metru pe secundă la pătrat"}
22 other{"{0} de metri pe secundă la pătrat"}
75 per{"{0} pe centimetru pătrat"}
88 per{"{0} pe inchi pătrat"}
95 per{"{0} pe kilometru pătrat"}
102 per{"{0} pe metru pătrat"}
109 per{"{0} pe milă pătrată"}
119 per{"{0} pe {1}"}
[all …]
/third_party/typescript/tests/baselines/reference/
Dextension.types30 public pe:string;
31 >pe : string
42 c.pe;
43 >c.pe : any
45 >pe : any
/third_party/icu/icu4c/source/test/intltest/
Dtranstst.cpp1499 UParseError pe; in TestNormalizationTransliterator() local
1503 pe, status); in TestNormalizationTransliterator()
2183 UParseError pe; in TestNFDChainRBT() local
2187 UTRANS_FORWARD, pe, ec); in TestNFDChainRBT()
2287 UParseError pe; in TestNullInverse() local
2289 Transliterator *t = Transliterator::createInstance("Null", UTRANS_FORWARD, pe, ec); in TestNullInverse()
2312 UParseError pe; in TestAliasInverseID() local
2314 Transliterator *t = Transliterator::createInstance(ID, UTRANS_FORWARD, pe, ec); in TestAliasInverseID()
2340 UParseError pe; in TestCompoundInverseID() local
2342 Transliterator *t = Transliterator::createInstance(ID, UTRANS_FORWARD, pe, ec); in TestCompoundInverseID()
[all …]
/third_party/libuv/src/unix/
Depoll.c118 struct epoll_event* pe; in uv__io_poll() local
318 pe = events + i; in uv__io_poll()
319 fd = pe->data.fd; in uv__io_poll()
336 epoll_ctl(loop->backend_fd, EPOLL_CTL_DEL, fd, pe); in uv__io_poll()
345 pe->events &= w->pevents | POLLERR | POLLHUP; in uv__io_poll()
362 if (pe->events == POLLERR || pe->events == POLLHUP) in uv__io_poll()
363 pe->events |= in uv__io_poll()
366 if (pe->events != 0) { in uv__io_poll()
374 w->cb(loop, w, pe->events); in uv__io_poll()
Dposix-poll.c88 struct pollfd* pe; in uv__pollfds_add() local
101 pe = &loop->poll_fds[loop->poll_fds_used++]; in uv__pollfds_add()
102 pe->fd = w->fd; in uv__pollfds_add()
103 pe->events = w->pevents; in uv__pollfds_add()
145 struct pollfd* pe; in uv__io_poll() local
259 pe = loop->poll_fds + i; in uv__io_poll()
260 fd = pe->fd; in uv__io_poll()
280 pe->revents &= w->pevents | POLLERR | POLLHUP; in uv__io_poll()
282 if (pe->revents != 0) { in uv__io_poll()
288 w->cb(loop, w, pe->revents); in uv__io_poll()

12345678910>>...21