/external/stressapptest/src/ |
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...] |
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 | finelock_queue.cc | 33 // null (pe->pattern == 0) 224 struct page_entry pe; local 230 int gotpage = GetPageFromPhysical(paddr, &pe); 236 uint64 addr_diff = paddr - pe.paddr; 241 reinterpret_cast<char*>(os->PrepareTestMem(pe.offset, page_size_)); 243 os->ReleaseTestMem(vaddr, pe.offset, page_size_); 254 if (pe.lastpattern) { 258 data.l32.l = pe.lastpattern->pattern(offset << 1); 259 data.l32.h = pe.lastpattern->pattern((offset << 1) + 1); 262 pe 270 GetPageFromPhysical(uint64 paddr, struct page_entry *pe) argument 327 GetRandomWithPredicateTag(struct page_entry *pe, bool (*pred_func)(struct page_entry*), int32 tag) argument 387 GetRandomWithPredicate(struct page_entry *pe, bool (*pred_func)(struct page_entry*)) argument 397 GetValid(struct page_entry *pe) argument 401 GetValid(struct page_entry *pe, int32 mask) argument 409 GetEmpty(struct page_entry *pe, int32 mask) argument 412 GetEmpty(struct page_entry *pe) argument 420 PutEmpty(struct page_entry *pe) argument 438 PutValid(struct page_entry *pe) argument [all...] |
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 | sat.h | 74 bool GetValid(struct page_entry *pe); 75 bool PutValid(struct page_entry *pe); 76 bool GetEmpty(struct page_entry *pe); 77 bool PutEmpty(struct page_entry *pe); 79 bool GetValid(struct page_entry *pe, int32 tag); 80 bool GetEmpty(struct page_entry *pe, int32 tag); 307 void AddrMapUpdate(struct page_entry *pe);
|
H A D | sat.cc | 249 bool Sat::GetValid(struct page_entry *pe) { argument 250 return GetValid(pe, kDontCareTag); 255 bool Sat::GetValid(struct page_entry *pe, int32 tag) { argument 259 result = finelock_q_->GetValid(pe, tag); 261 result = valid_->PopRandom(pe); 264 pe->addr = os_->PrepareTestMem(pe->offset, page_length_); // Map it. 267 pe->ts = os_->GetTimestamp(); 268 pe->lastpattern = pe 275 PutValid(struct page_entry *pe) argument 290 GetEmpty(struct page_entry *pe) argument 294 GetEmpty(struct page_entry *pe, int32 tag) argument 309 PutEmpty(struct page_entry *pe) argument 349 AddrMapUpdate(struct page_entry *pe) argument 445 struct page_entry pe; local 509 struct page_entry pe; local [all...] |
/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/icu/icu4c/source/i18n/ |
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
|
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
|
/external/guice/core/test/com/google/inject/ |
H A D | ProvisionExceptionsTest.java | 47 } catch(ProvisionException pe) { 49 Asserts.assertContains(pe.getMessage(), 51 assertEquals(1, pe.getErrorMessages().size()); 52 assertEquals(IllegalStateException.class, pe.getCause().getClass()); 53 assertEquals(IllegalStateException.class, Errors.getOnlyCause(pe.getErrorMessages()).getClass()); 69 } catch(ProvisionException pe) { 71 Asserts.assertContains(pe.getMessage(), 73 assertEquals(1, pe.getErrorMessages().size()); 74 assertEquals(IOException.class, pe.getCause().getClass()); 75 assertEquals(IOException.class, Errors.getOnlyCause(pe [all...] |
/external/skia/tests/ |
H A D | AsADashTest.cpp | 15 sk_sp<SkPathEffect> pe(SkCornerPathEffect::Make(1.0)); 18 SkPathEffect::DashType dashType = pe->asADash(&info); 25 sk_sp<SkPathEffect> pe(SkDashPathEffect::Make(inIntervals, 4, phase)); 27 SkPathEffect::DashType dashType = pe->asADash(nullptr); 36 sk_sp<SkPathEffect> pe(SkDashPathEffect::Make(inIntervals, 4, phase)); 40 SkPathEffect::DashType dashType = pe->asADash(&info); 48 pe->asADash(&info);
|
/external/elfutils/tests/ |
H A D | run-dwfllines.sh | 25 time: 0, len: 0, idx: 0, b: 1, e: 0, pe: 0, eb: 0, block: 0, isa: 0, disc: 0 27 time: 0, len: 0, idx: 0, b: 1, e: 0, pe: 0, eb: 0, block: 0, isa: 0, disc: 0 29 time: 0, len: 0, idx: 0, b: 1, e: 0, pe: 0, eb: 0, block: 0, isa: 0, disc: 0 31 time: 0, len: 0, idx: 0, b: 1, e: 0, pe: 0, eb: 0, block: 0, isa: 0, disc: 0 33 time: 0, len: 0, idx: 0, b: 1, e: 1, pe: 0, eb: 0, block: 0, isa: 0, disc: 0 36 time: 0, len: 0, idx: 0, b: 1, e: 0, pe: 0, eb: 0, block: 0, isa: 0, disc: 0 38 time: 0, len: 0, idx: 0, b: 1, e: 0, pe: 0, eb: 0, block: 0, isa: 0, disc: 0 40 time: 0, len: 0, idx: 0, b: 1, e: 0, pe: 0, eb: 0, block: 0, isa: 0, disc: 0 42 time: 0, len: 0, idx: 0, b: 1, e: 1, pe: 0, eb: 0, block: 0, isa: 0, disc: 0 45 time: 0, len: 0, idx: 0, b: 1, e: 0, pe [all...] |
/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/syslinux/gnu-efi/gnu-efi-3.0/inc/ |
H A D | inc.mak | 19 pe.h \
|
/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/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/icu/icu4c/source/common/ |
H A D | ucase.cpp | 143 const uint16_t *pe=GET_EXCEPTIONS(csp, props); local 144 uint16_t excWord=*pe++; 146 GET_SLOT_VALUE(excWord, UCASE_EXC_LOWER, pe, c); 160 const uint16_t *pe=GET_EXCEPTIONS(csp, props); local 161 uint16_t excWord=*pe++; 163 GET_SLOT_VALUE(excWord, UCASE_EXC_UPPER, pe, c); 177 const uint16_t *pe=GET_EXCEPTIONS(csp, props); local 178 uint16_t excWord=*pe++; 187 GET_SLOT_VALUE(excWord, idx, pe, c); 246 const uint16_t *pe0, *pe local 452 const uint16_t *pe=GET_EXCEPTIONS(csp, props); local 828 const uint16_t *pe=GET_EXCEPTIONS(csp, props), *pe2; local 974 const uint16_t *pe=GET_EXCEPTIONS(csp, props), *pe2; local 1120 const uint16_t *pe=GET_EXCEPTIONS(csp, props); local 1185 const uint16_t *pe=GET_EXCEPTIONS(csp, props), *pe2; local [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/toybox/toys/pending/ |
H A D | fdisk.c | 207 struct part_entry *pe; local 212 pe = &partitions[i]; 213 px = pe->part; 215 first[i] = swap_le32toh(px->start4) + pe->start_offset; 303 struct part_entry *pe = &partitions[i]; local 304 pe->part = part_offset(MBRbuf, i); 305 pe->start_offset = 0; 306 pe->sec_buffer = MBRbuf; 307 pe->modified = change; 576 struct part_entry *pe local 662 struct part_entry *pe; local 883 struct part_entry *pe = &partitions[i]; local 918 struct part_entry *pe = &partitions[idx]; local 980 struct part_entry *pe; local 1043 struct part_entry *pe; local 1086 struct part_entry *pe; local 1148 struct part_entry *pe = &partitions[idx]; local 1175 struct part_entry *pe; local 1191 struct part_entry *pe; local 1222 struct part_entry *pe; local [all...] |
/external/harfbuzz_ng/src/ |
H A D | hb-buffer-deserialize-text.rl | 100 const char *p = buf, *pe = buf + buf_len; 105 while (p < pe && ISSPACE (*p)) 107 if (p < pe && *p == (buffer->len ? '|' : '[')) 112 const char *eof = pe, *tok = NULL; 123 return p == pe && *(p-1) != ']';
|
H A D | hb-buffer-deserialize-json.rl | 106 const char *p = buf, *pe = buf + buf_len; 111 while (p < pe && ISSPACE (*p)) 113 if (p < pe && *p == (buffer->len ? ',' : '[')) 129 return p == pe && *(p-1) != ']';
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/ |
H A D | IntlTestDateFormatAPIC.java | 78 } catch (java.text.ParseException pe) { 79 System.out.println(pe); 113 } catch (java.text.ParseException pe) { 114 System.out.println(pe); 135 } catch (java.text.ParseException pe) { 136 System.out.println(pe);
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
H A D | IntlTestDateFormatAPIC.java | 77 } catch (java.text.ParseException pe) { 78 System.out.println(pe); 112 } catch (java.text.ParseException pe) { 113 System.out.println(pe); 134 } catch (java.text.ParseException pe) { 135 System.out.println(pe);
|
/external/jcommander/src/main/java/com/beust/jcommander/converters/ |
H A D | ISO8601DateConverter.java | 44 } catch (ParseException pe) {
|