HomeSort by relevance Sort by last modified time
    Searched defs:pe (Results 1 - 25 of 56) sorted by null

1 2 3

  /external/iproute2/lib/
inet_proto.c 29 struct protoent *pe; local
34 pe = getprotobynumber(proto);
35 if (pe) {
37 strncpy(ncache, pe->p_name, 16);
38 strncpy(buf, pe->p_name, len);
49 struct protoent *pe; local
61 pe = getprotobyname(buf);
62 if (pe) {
63 icache = pe->p_proto;
64 strncpy(ncache, pe->p_name, 16)
    [all...]
  /external/clearsilver/util/
filter.c 58 int pi[2]={-1,-1}, po[2]={-1,-1}, pe[2]={-1,-1}; local
89 if (pipe (pe) == -1)
127 close (pe[0]);
128 dup2 (pe[1], 2);
129 close (pe[1]);
150 close (pe[0]);
151 close (pe[1]);
168 close (pe[1]);
169 *fderr = pe[0];
  /frameworks/base/media/libstagefright/codecs/aacenc/inc/
line_pe.h 34 Word16 sfbPe[MAX_GROUPED_SFB]; /* pe for each sfb */
37 Word16 pe; /* sum of sfbPe */ member in struct:__anon9292
45 Word16 pe; member in struct:__anon9293
  /external/bluetooth/glib/tests/
scannerapi.c 67 int pe = fix->scanner->parse_errors; local
69 g_assert_cmpint (fix->scanner->parse_errors, ==, pe + 1);
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
PrivilegedActionException2Test.java 44 PrivilegedActionException pe = new PrivilegedActionException(e); local
45 assertEquals("Did not encapsulate test exception!", e, pe
49 pe = new PrivilegedActionException(null);
50 assertNull("Did not encapsulate null test exception properly!", pe
65 PrivilegedActionException pe = new PrivilegedActionException(e); local
66 assertEquals("Did not encapsulate test IOException!", e, pe
81 PrivilegedActionException pe = new PrivilegedActionException(ex); local
84 Throwable res = pe.getCause();
  /frameworks/base/media/libstagefright/codecs/aacenc/src/
line_pe.c 37 * description: constants that do not change during successive pe calculations
79 Word32 pe, constPart, nActiveLines; local
81 peData->pe = peData->offset;
90 pe = 0;
127 pe = pe + peChanData->sfbPe[sfbGrp+sfb];
133 peChanData->pe = saturate(pe);
138 pe += peData->pe;
    [all...]
  /dalvik/dx/src/com/android/dx/cf/direct/
AttributeListParser.java 156 ParseException pe = new ParseException(ex); local
157 pe.addContext("...while parsing attributes[" + i + "]");
158 throw pe;
MemberListParser.java 231 ParseException pe = new ParseException(ex); local
232 pe.addContext("...while parsing " + humanName() + "s[" + i +
234 throw pe;