/external/icu/icu4c/source/i18n/ |
H A D | uregexc.cpp | 29 UParseError *pe, 40 return uregex_open(patString.getBuffer(), patString.length(), flags, pe, status); 27 uregex_openC( const char *pattern, uint32_t flags, UParseError *pe, UErrorCode *status) argument
|
H A D | uspoof_build.cpp | 53 int32_t *errorType, UParseError *pe, UErrorCode *status) { 65 if (pe != NULL) { 66 pe->line = 0; 67 pe->offset = 0; 68 pe->preContext[0] = 0; 69 pe->postContext[0] = 0; 77 ConfusabledataBuilder::buildConfusableData(This, confusables, confusablesLen, errorType, pe, *status); 51 uspoof_openFromSource(const char *confusables, int32_t confusablesLen, const char* , int32_t , int32_t *errorType, UParseError *pe, UErrorCode *status) argument
|
/external/iproute2/lib/ |
H A D | inet_proto.c | 30 struct protoent *pe; local 35 pe = getprotobynumber(proto); 36 if (pe) { 38 strncpy(ncache, pe->p_name, 16); 39 strncpy(buf, pe->p_name, len); 50 struct protoent *pe; local 62 pe = getprotobyname(buf); 63 if (pe) { 64 icache = pe->p_proto; 65 strncpy(ncache, pe [all...] |
/external/aac/libAACenc/src/ |
H A D | line_pe.h | 104 INT sfbPe[MAX_GROUPED_SFB]; /* pe for each sfb */ 107 INT pe; /* sum of sfbPe */ member in struct:__anon280 114 INT pe; member in struct:__anon281
|
/external/python/cpython2/PC/VS8.0/ |
H A D | kill_python.c | 35 PROCESSENTRY32W pe; local 38 pe.dwSize = sizeof(PROCESSENTRY32W); 97 if (!Process32FirstW(hsp, &pe)) { 115 if (_wcsnicmp(pe.szExeFile, PYTHON_EXE, PYTHON_EXE_LEN)) 120 hsm = CreateToolhelp32Snapshot(TH32CS_SNAPMODULE, pe.th32ProcessID); 148 hp = OpenProcess(dac, FALSE, pe.th32ProcessID); 171 } while (Process32NextW(hsp, &pe));
|
/external/python/cpython2/PC/VS9.0/ |
H A D | kill_python.c | 35 PROCESSENTRY32W pe; local 38 pe.dwSize = sizeof(PROCESSENTRY32W); 97 if (!Process32FirstW(hsp, &pe)) { 115 if (_wcsnicmp(pe.szExeFile, PYTHON_EXE, PYTHON_EXE_LEN)) 120 hsm = CreateToolhelp32Snapshot(TH32CS_SNAPMODULE, pe.th32ProcessID); 148 hp = OpenProcess(dac, FALSE, pe.th32ProcessID); 171 } while (Process32NextW(hsp, &pe));
|
/external/stressapptest/src/ |
H A D | queue.cc | 45 int PageEntryQueue::Push(struct page_entry *pe) { argument 49 if (!pe) 56 pages_[nextin_] = *pe; 70 int PageEntryQueue::PopRandom(struct page_entry *pe) { argument 77 if (!pe) 107 *pe = pages_[nextout_];
|
H A D | finelock_queue.h | 39 bool GetEmpty(struct page_entry *pe); 40 bool GetValid(struct page_entry *pe); 41 bool PutEmpty(struct page_entry *pe); 42 bool PutValid(struct page_entry *pe); 45 bool GetEmpty(struct page_entry *pe, int32 tag); 46 bool GetValid(struct page_entry *pe, int32 tag); 49 bool GetPageFromPhysical(uint64 paddr, struct page_entry *pe); 65 static bool page_is_valid(struct page_entry *pe) { argument 66 return pe->pattern != NULL; 69 static bool page_is_empty(struct page_entry *pe) { argument [all...] |
H A D | queue.h | 50 static inline void init_pe(struct page_entry *pe) { argument 51 pe->offset = 0; 52 pe->addr = NULL; 53 pe->pattern = NULL; 54 pe->tag = kInvalidTag; 55 pe->touch = 0; 56 pe->ts = 0; 57 pe->lastpattern = NULL; 68 int Push(struct page_entry *pe); 70 int PopRandom(struct page_entry *pe); [all...] |
/external/harfbuzz_ng/src/ |
H A D | hb-buffer-deserialize-json.hh | 448 const char *p = buf, *pe = buf + buf_len; local 453 while (p < pe && ISSPACE (*p)) 455 if (p < pe && *p == (buffer->len ? ',' : '[')) 476 if ( p == pe ) 629 if ( ++p != pe ) 640 return p == pe && *(p-1) != ']';
|
H A D | hb-buffer-deserialize-text.hh | 325 const char *p = buf, *pe = buf + buf_len; local 330 while (p < pe && ISSPACE (*p)) 332 if (p < pe && *p == (buffer->len ? '|' : '[')) 337 const char *eof = pe, *tok = NULL; 353 if ( p == pe ) 485 if ( ++p != pe ) 568 return p == pe && *(p-1) != ']';
|
H A D | hb-ot-shape-complex-indic-machine.hh | 1377 unsigned int p, pe, eof, ts HB_UNUSED, te HB_UNUSED, act HB_UNUSED; local 1393 pe = eof = buffer->len; 1404 if ( p == pe ) 1547 if ( ++p != pe )
|
H A D | hb-ot-shape-complex-myanmar-machine.hh | 284 unsigned int p, pe, eof, ts HB_UNUSED, te HB_UNUSED, act HB_UNUSED; local 300 pe = eof = buffer->len; 311 if ( p == pe ) 381 if ( ++p != pe )
|
H A D | hb-ot-shape-complex-use-machine.hh | 310 unsigned int p, pe, eof, ts HB_UNUSED, te HB_UNUSED, act HB_UNUSED; local 326 pe = eof = buffer->len; 337 if ( p == pe ) 431 if ( ++p != pe )
|
/external/ltp/testcases/kernel/syscalls/perf_event_open/ |
H A D | perf_event_open01.c | 79 static struct perf_event_attr pe; variable in typeref:struct:perf_event_attr 114 pe.size = sizeof(struct perf_event_attr); 115 pe.disabled = 1; 116 pe.exclude_kernel = 1; 117 pe.exclude_hv = 1; 147 pe.type = tc->type; 148 pe.config = tc->config; 150 TEST(perf_event_open(&pe, 0, -1, -1, 0));
|
/external/skia/third_party/harfbuzz/ |
H A D | hb-buffer-deserialize-json.hh | 448 const char *p = buf, *pe = buf + buf_len; local 453 while (p < pe && ISSPACE (*p)) 455 if (p < pe && *p == (buffer->len ? ',' : '[')) 476 if ( p == pe ) 629 if ( ++p != pe ) 640 return p == pe && *(p-1) != ']';
|
H A D | hb-buffer-deserialize-text.hh | 325 const char *p = buf, *pe = buf + buf_len; local 330 while (p < pe && ISSPACE (*p)) 332 if (p < pe && *p == (buffer->len ? '|' : '[')) 337 const char *eof = pe, *tok = NULL; 353 if ( p == pe ) 485 if ( ++p != pe ) 568 return p == pe && *(p-1) != ']';
|
H A D | hb-ot-shape-complex-indic-machine.hh | 1377 unsigned int p, pe, eof, ts HB_UNUSED, te HB_UNUSED, act HB_UNUSED; local 1393 pe = eof = buffer->len; 1404 if ( p == pe ) 1547 if ( ++p != pe )
|
H A D | hb-ot-shape-complex-myanmar-machine.hh | 284 unsigned int p, pe, eof, ts HB_UNUSED, te HB_UNUSED, act HB_UNUSED; local 300 pe = eof = buffer->len; 311 if ( p == pe ) 381 if ( ++p != pe )
|
/external/lisa/libs/utils/android/ |
H A D | system.py | 23 import pexpect as pe namespace 87 return pe.spawn(trace_cmd)
|
/external/ltp/testcases/kernel/connectors/pec/ |
H A D | pec_listener.c | 185 struct proc_event *pe; local 189 pe = (struct proc_event *)msg->data; 191 switch (pe->what) { 193 printf("none err: %u\n", pe->event_data.ack.err); 197 pe->event_data.fork.parent_pid, 198 pe->event_data.fork.child_pid); 201 printf("exec pid: %d\n", pe->event_data.exec.process_pid); 205 pe->event_data.id.process_pid, 206 pe->event_data.id.e.euid, pe [all...] |
/external/ltp/testcases/misc/math/float/ |
H A D | thread_code.c | 120 int pe, pr, px; local 130 (void)frexp(e, &pe); /* for dexected */ 132 if (abs(pe - px) < th_data->th_func.precision ||
|
/external/skia/gm/ |
H A D | patheffects.cpp | 19 SkPathEffect* pe = paint->getPathEffect(); local 22 if (pe) { 23 compose = SkPathEffect::MakeCompose(sk_ref_sp(pe), corner);
|
/external/skia/samplecode/ |
H A D | ClockFaceView.cpp | 167 auto pe = makepe(0, &pts); local 172 pe->filterPath(&dstPath, path, &rec, nullptr);
|
/external/skia/src/gpu/ |
H A D | GrStyle.cpp | 106 void GrStyle::initPathEffect(sk_sp<SkPathEffect> pe) { argument 110 if (!pe) { 114 if (SkPathEffect::kDash_DashType == pe->asADash(&info)) { 121 pe->asADash(&info); 122 fPathEffect = std::move(pe); 125 fPathEffect = std::move(pe);
|