/external/iproute2/lib/ |
D | inet_proto.c | 29 struct protoent *pe; in inet_proto_n2a() local 34 pe = getprotobynumber(proto); in inet_proto_n2a() 35 if (pe) { in inet_proto_n2a() 37 strncpy(ncache, pe->p_name, 16); in inet_proto_n2a() 38 strncpy(buf, pe->p_name, len); in inet_proto_n2a() 49 struct protoent *pe; in inet_proto_a2n() local 61 pe = getprotobyname(buf); in inet_proto_a2n() 62 if (pe) { in inet_proto_a2n() 63 icache = pe->p_proto; in inet_proto_a2n() 64 strncpy(ncache, pe->p_name, 16); in inet_proto_a2n() [all …]
|
/external/icu4c/common/ |
D | ucase.c | 139 const uint16_t *pe=GET_EXCEPTIONS(csp, props); in ucase_tolower() local 140 uint16_t excWord=*pe++; in ucase_tolower() 142 GET_SLOT_VALUE(excWord, UCASE_EXC_LOWER, pe, c); in ucase_tolower() 156 const uint16_t *pe=GET_EXCEPTIONS(csp, props); in ucase_toupper() local 157 uint16_t excWord=*pe++; in ucase_toupper() 159 GET_SLOT_VALUE(excWord, UCASE_EXC_UPPER, pe, c); in ucase_toupper() 173 const uint16_t *pe=GET_EXCEPTIONS(csp, props); in ucase_totitle() local 174 uint16_t excWord=*pe++; in ucase_totitle() 183 GET_SLOT_VALUE(excWord, idx, pe, c); in ucase_totitle() 242 const uint16_t *pe0, *pe=GET_EXCEPTIONS(csp, props); in ucase_addCaseClosure() local [all …]
|
/external/qemu/ |
D | os-win32.c | 64 PollingEntry **ppe, *pe; in qemu_add_polling_cb() local 65 pe = qemu_mallocz(sizeof(PollingEntry)); in qemu_add_polling_cb() 66 pe->func = func; in qemu_add_polling_cb() 67 pe->opaque = opaque; in qemu_add_polling_cb() 69 *ppe = pe; in qemu_add_polling_cb() 75 PollingEntry **ppe, *pe; in qemu_del_polling_cb() local 77 pe = *ppe; in qemu_del_polling_cb() 78 if (pe->func == func && pe->opaque == opaque) { in qemu_del_polling_cb() 79 *ppe = pe->next; in qemu_del_polling_cb() 80 qemu_free(pe); in qemu_del_polling_cb() [all …]
|
/external/chromium/base/win/ |
D | pe_image_unittest.cc | 158 PEImage pe(module); in TEST() local 160 EXPECT_TRUE(pe.VerifyMagic()); in TEST() 162 DWORD os = pe.GetNTHeaders()->OptionalHeader.MajorOperatingSystemVersion; in TEST() 163 os = os * 10 + pe.GetNTHeaders()->OptionalHeader.MinorOperatingSystemVersion; in TEST() 165 pe.EnumSections(SectionsCallback, &count); in TEST() 169 pe.EnumImportChunks(ImportChunksCallback, &count); in TEST() 173 pe.EnumDelayImportChunks(DelayImportChunksCallback, &count); in TEST() 177 pe.EnumExports(ExportsCallback, &count); in TEST() 182 pe.EnumAllImports(ImportsCallback, &count); in TEST() 187 pe.EnumAllDelayImports(ImportsCallback, &count); in TEST() [all …]
|
/external/icu4c/i18n/ |
D | uspoof_build.cpp | 50 int32_t *errorType, UParseError *pe, UErrorCode *status) { in uspoof_openFromSource() argument 62 if (pe != NULL) { in uspoof_openFromSource() 63 pe->line = 0; in uspoof_openFromSource() 64 pe->offset = 0; in uspoof_openFromSource() 65 pe->preContext[0] = 0; in uspoof_openFromSource() 66 pe->postContext[0] = 0; in uspoof_openFromSource() 74 …ConfusabledataBuilder::buildConfusableData(This, confusables, confusablesLen, errorType, pe, *stat… in uspoof_openFromSource() 75 buildWSConfusableData(This, confusablesWholeScript, confusablesWholeScriptLen, pe, *status); in uspoof_openFromSource()
|
D | repattrn.cpp | 275 UParseError &pe, in compile() argument 309 compiler.compile(regex, pe, status); in compile() 326 UParseError &pe, in compile() argument 360 compiler.compile(regex, pe, status); in compile() 375 UParseError &pe, in compile() argument 378 return compile(regex, 0, pe, err); in compile() 387 UParseError &pe, in compile() argument 390 return compile(regex, 0, pe, err); in compile() 402 UParseError pe; in compile() local 403 return compile(regex, flags, pe, err); in compile() [all …]
|
D | uregexc.cpp | 27 UParseError *pe, in uregex_openC() argument 38 return uregex_open(patString.getBuffer(), patString.length(), flags, pe, status); in uregex_openC()
|
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/ |
D | PrivilegedActionException2Test.java | 30 PrivilegedActionException pe = new PrivilegedActionException(e); in test_ConstructorLjava_lang_Exception() local 31 assertEquals("Did not encapsulate test exception!", e, pe in test_ConstructorLjava_lang_Exception() 35 pe = new PrivilegedActionException(null); in test_ConstructorLjava_lang_Exception() 36 assertNull("Did not encapsulate null test exception properly!", pe in test_ConstructorLjava_lang_Exception() 45 PrivilegedActionException pe = new PrivilegedActionException(e); in test_getException() local 46 assertEquals("Did not encapsulate test IOException!", e, pe in test_getException()
|
/external/quake/quake/src/QW/client/ |
D | pmovetst.c | 319 physent_t *pe; in PM_TestPlayerPosition() local 325 pe = &pmove.physents[i]; in PM_TestPlayerPosition() 327 if (pe->model) in PM_TestPlayerPosition() 331 VectorSubtract (pe->mins, player_maxs, mins); in PM_TestPlayerPosition() 332 VectorSubtract (pe->maxs, player_mins, maxs); in PM_TestPlayerPosition() 336 VectorSubtract (pos, pe->origin, test); in PM_TestPlayerPosition() 357 physent_t *pe; in PM_PlayerMove() local 368 pe = &pmove.physents[i]; in PM_PlayerMove() 370 if (pe->model) in PM_PlayerMove() 374 VectorSubtract (pe->mins, player_maxs, mins); in PM_PlayerMove() [all …]
|
/external/icu4c/test/intltest/ |
D | transtst.cpp | 1495 UParseError pe; in TestNormalizationTransliterator() local 1499 pe, status); in TestNormalizationTransliterator() 2101 UParseError pe; in TestNFDChainRBT() local 2105 UTRANS_FORWARD, pe, ec); in TestNFDChainRBT() 2205 UParseError pe; in TestNullInverse() local 2207 Transliterator *t = Transliterator::createInstance("Null", UTRANS_FORWARD, pe, ec); in TestNullInverse() 2230 UParseError pe; in TestAliasInverseID() local 2232 Transliterator *t = Transliterator::createInstance(ID, UTRANS_FORWARD, pe, ec); in TestAliasInverseID() 2258 UParseError pe; in TestCompoundInverseID() local 2260 Transliterator *t = Transliterator::createInstance(ID, UTRANS_FORWARD, pe, ec); in TestCompoundInverseID() [all …]
|
D | regextst.cpp | 363 UParseError pe; in doRegexLMTest() local 369 REPattern = RegexPattern::compile(patString, 0, pe, status); in doRegexLMTest() 426 UParseError pe; in doRegexLMTestUTF8() local 432 REPattern = RegexPattern::compile(&pattern, 0, pe, status); in doRegexLMTestUTF8() 516 UParseError pe; in regex_err() local 523 callerPattern = RegexPattern::compile(patString, 0, pe, status); in regex_err() 528 if (pe.line != errLine || pe.offset != errCol) { in regex_err() 530 line, errLine, errCol, pe.line, pe.offset); in regex_err() 542 callerPattern = RegexPattern::compile(&patternText, 0, pe, status); in regex_err() 547 if (pe.line != errLine || pe.offset != errCol) { in regex_err() [all …]
|
/external/qemu/distrib/sdl-1.2.12/src/video/Xext/Xv/ |
D | Xv.c | 315 SDL_NAME(XvEncodingInfo) *pes, *pe; in SDL_NAME() 321 xvEncodingInfo *pe; in SDL_NAME() member 361 pe = pes; in SDL_NAME() 363 pe->name = (char *)NULL; in SDL_NAME() 364 pe->num_encodings = 0; in SDL_NAME() 365 pe++; in SDL_NAME() 368 pe = pes; in SDL_NAME() 370 pe->encoding_id = u.pe->encoding; in SDL_NAME() 371 pe->width = u.pe->width; in SDL_NAME() 372 pe->height = u.pe->height; in SDL_NAME() [all …]
|
/external/kernel-headers/original/linux/ |
D | posix_acl.h | 46 #define FOREACH_ACL_ENTRY(pa, acl, pe) \ argument 47 for(pa=(acl)->a_entries, pe=pa+(acl)->a_count; pa<pe; pa++)
|
/external/openssl/crypto/asn1/ |
D | ameth_lib.c | 174 const EVP_PKEY_ASN1_METHOD *EVP_PKEY_asn1_find(ENGINE **pe, int type) in EVP_PKEY_asn1_find() argument 185 if (pe) in EVP_PKEY_asn1_find() 193 *pe = e; in EVP_PKEY_asn1_find() 197 *pe = NULL; in EVP_PKEY_asn1_find() 202 const EVP_PKEY_ASN1_METHOD *EVP_PKEY_asn1_find_str(ENGINE **pe, in EVP_PKEY_asn1_find_str() argument 209 if (pe) in EVP_PKEY_asn1_find_str() 222 *pe = e; in EVP_PKEY_asn1_find_str() 226 *pe = NULL; in EVP_PKEY_asn1_find_str()
|
/external/openssh/openbsd-compat/ |
D | glob.c | 249 const Char *pe, *pm, *pl; in globexp2() local 259 for (i = 0, pe = ++ptr; *pe; pe++) in globexp2() 260 if (*pe == LBRACKET) { in globexp2() 262 for (pm = pe++; *pe != RBRACKET && *pe != EOS; pe++) in globexp2() 264 if (*pe == EOS) { in globexp2() 269 pe = pm; in globexp2() 271 } else if (*pe == LBRACE) in globexp2() 273 else if (*pe == RBRACE) { in globexp2() 280 if (i != 0 || *pe == EOS) in globexp2() 283 for (i = 0, pl = pm = ptr; pm <= pe; pm++) { in globexp2() [all …]
|
/external/mksh/src/ |
D | misc.c | 576 const char *se, *pe; in gmatchx() local 584 pe = p + strlen(p); in gmatchx() 589 if (!isfile && !has_globbing(p, pe)) { in gmatchx() 590 size_t len = pe - p + 1; in gmatchx() 602 pe = pnew + strlen(pnew); in gmatchx() 605 (const unsigned char *)pnew, (const unsigned char *)pe); in gmatchx() 631 const unsigned char *pe = (const unsigned char *) xpe; in has_globbing() local 638 for (; p < pe; p++) { in has_globbing() 689 const unsigned char *p, const unsigned char *pe) in do_gmatch() argument 697 while (p < pe) { in do_gmatch() [all …]
|
/external/bluetooth/glib/gio/fen/ |
D | fen-kernel.c | 210 port_event_t pe[PE_ALLOC]; in port_fetch_event_cb() local 221 if (port_getn (pn->port, pe, PE_ALLOC, &nget, &timeout) == 0) { in port_fetch_event_cb() 224 fo = (_f*)pe[i].portev_user; in port_fetch_event_cb() 226 switch (pe[i].portev_source) { in port_fetch_event_cb() 233 printevent(F_NAME(fo), pe[i].portev_events, "RAW")); in port_fetch_event_cb() 234 port_add_kevent (pe[i].portev_events, fo->user_data); in port_fetch_event_cb() 239 if (pe[i].portev_events & FILE_EXCEPTION) { in port_fetch_event_cb() 249 FK_W ("[kernel] unknown portev_source %d\n", pe[i].portev_source); in port_fetch_event_cb()
|
/external/webkit/Source/WebCore/platform/graphics/wince/ |
D | PlatformPathWinCE.cpp | 622 PlatformPathElement pe(data); in moveTo() local 623 append(pe); in moveTo() 629 PlatformPathElement pe(data); in addLineTo() local 630 append(pe); in addLineTo() 636 PlatformPathElement pe(data); in addQuadCurveTo() local 637 append(pe); in addQuadCurveTo() 643 PlatformPathElement pe(data); in addBezierCurveTo() local 644 append(pe); in addBezierCurveTo() 706 PlatformPathElement pe(data); in addArcTo() local 707 append(pe); in addArcTo() [all …]
|
/external/skia/samplecode/ |
D | SamplePathEffects.cpp | 48 SkPathEffect* pe = new SkComposePathEffect(outer, inner); in make_pe() local 51 return pe; in make_pe() 65 SkPathEffect* pe = new SkComposePathEffect(outer, inner); in make_warp_pe() local 68 return pe; in make_warp_pe()
|
/external/aac/libAACenc/src/ |
D | line_pe.h | 107 INT pe; /* sum of sfbPe */ member 114 INT pe; member
|
D | line_pe.cpp | 156 peChanData->pe = 0; in FDKaacEnc_calcSfbPe() 199 peChanData->pe += peChanData->sfbPe[sfbGrp+sfb]; in FDKaacEnc_calcSfbPe() 205 peChanData->pe>>=PE_CONSTPART_SHIFT; in FDKaacEnc_calcSfbPe()
|
/external/libxml2/include/libxml/ |
D | xmlwriter.h | 405 int pe, const xmlChar * name); 414 int pe, 420 int pe, 427 int pe, 432 int pe, 445 writer, int pe,
|
/external/skia/gm/ |
D | patheffects.cpp | 19 SkPathEffect* pe = paint->getPathEffect(); in compose_pe() local 22 if (pe) { in compose_pe() 23 compose = new SkComposePathEffect(pe, corner); in compose_pe()
|
/external/chromium/chrome/browser/resources/shared/js/cr/ui/ |
D | list.js | 529 handleLeadChange_: function(pe) { argument 531 if (pe.oldValue != -1) { 532 if ((element = this.getListItemByIndex(pe.oldValue))) 536 if (pe.newValue != -1) { 537 if ((element = this.getListItemByIndex(pe.newValue))) 539 this.scrollIndexIntoView(pe.newValue); 552 self.scrollIndexIntoView(pe.newValue);
|
/external/icu4c/i18n/unicode/ |
D | regex.h | 189 UParseError &pe, 220 UParseError &pe, 249 UParseError &pe, 281 UParseError &pe, 417 UParseError &pe, 437 UParseError &pe,
|