HomeSort by relevance Sort by last modified time
    Searched refs:cp (Results 126 - 150 of 1507) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/qemu/distrib/sdl-1.2.15/test/
autogen.sh 4 cp acinclude.m4 aclocal.m4
  /dalvik/libdex/
OptInvocation.cpp 53 char* cp; local
86 cp = absoluteFile + 1;
87 while (*cp != '\0') {
88 if (*cp == '/') {
89 *cp = '@';
91 cp++;
  /external/chromium_org/third_party/mesa/src/bin/
installmesa 69 cp -f ${TOP}/include/GL/*.h ${INCLUDE_DIR}/GL
70 cp -f ${TOP}/src/glw/*.h ${INCLUDE_DIR}/GL
71 # NOT YET: cp -f ${TOP}/include/GLES/*.h ${INCLUDE_DIR}/GLES
72 cp ${CP_FLAGS} ${TOP}/lib*/lib* ${LIB_DIR}
  /external/e2fsprogs/intl/
localealias.c 256 char *cp; local
262 cp = buf;
264 while (isspace ((unsigned char) cp[0]))
265 ++cp;
268 if (cp[0] != '\0' && cp[0] != '#')
270 alias = cp++;
271 while (cp[0] != '\0' && !isspace ((unsigned char) cp[0]))
272 ++cp;
    [all...]
l10nflist.c 181 char *cp; local
217 cp = abs_filename;
220 memcpy (cp, dirlist, dirlist_len);
221 __argz_stringify (cp, dirlist_len, PATH_SEPARATOR);
222 cp += dirlist_len;
223 cp[-1] = '/';
226 cp = stpcpy (cp, language);
230 *cp++ = '_';
231 cp = stpcpy (cp, territory)
    [all...]
  /external/e2fsprogs/lib/e2p/
feature.c 238 static char *skip_over_blanks(char *cp)
240 while (*cp && isspace(*cp))
241 cp++;
242 return cp;
245 static char *skip_over_word(char *cp)
247 while (*cp && !isspace(*cp) && *cp != ',')
248 cp++
262 char *cp, *buf, *next; local
    [all...]
  /external/javassist/src/main/javassist/bytecode/
AnnotationDefaultAttribute.java 74 * @param cp constant pool
79 public AnnotationDefaultAttribute(ConstPool cp, byte[] info) {
80 super(cp, tag, info);
87 * @param cp constant pool
90 public AnnotationDefaultAttribute(ConstPool cp) {
91 this(cp, new byte[] { 0, 0 });
97 AnnotationDefaultAttribute(ConstPool cp, int n, DataInputStream in)
100 super(cp, n, in);
MethodInfo.java 59 private MethodInfo(ConstPool cp) {
60 constPool = cp;
68 * @param cp
76 public MethodInfo(ConstPool cp, String methodname, String desc) {
77 this(cp);
79 name = cp.addUtf8Info(methodname);
84 MethodInfo(ConstPool cp, DataInputStream in) throws IOException {
85 this(cp);
98 * @param cp
108 public MethodInfo(ConstPool cp, String methodname, MethodInfo src
490 ConstPool cp = constPool; local
    [all...]
  /external/javassist/src/main/javassist/bytecode/annotation/
AnnotationMemberValue.java 34 public AnnotationMemberValue(ConstPool cp) {
35 this(null, cp);
42 public AnnotationMemberValue(Annotation a, ConstPool cp) {
43 super('@', cp);
47 Object getValue(ClassLoader cl, ClassPool cp, Method m)
50 return AnnotationImpl.make(cl, getType(cl), cp, value);
MemberValue.java 34 ConstPool cp; field in class:MemberValue
37 MemberValue(char tag, ConstPool cp) {
38 this.cp = cp;
46 abstract Object getValue(ClassLoader cl, ClassPool cp, Method m)
  /external/mesa3d/bin/
installmesa 69 cp -f ${TOP}/include/GL/*.h ${INCLUDE_DIR}/GL
70 cp -f ${TOP}/src/glw/*.h ${INCLUDE_DIR}/GL
71 # NOT YET: cp -f ${TOP}/include/GLES/*.h ${INCLUDE_DIR}/GLES
72 cp ${CP_FLAGS} ${TOP}/lib*/lib* ${LIB_DIR}
  /external/ppp/pppd/
eui64.h 95 #define eui64_get(ll, cp) do { \
96 eui64_copy((*cp), (ll)); \
97 (cp) += sizeof(eui64_t); \
100 #define eui64_put(ll, cp) do { \
101 eui64_copy((ll), (*cp)); \
102 (cp) += sizeof(eui64_t); \
  /libcore/luni/src/test/java/tests/security/cert/
CertPathCertPathRepTest.java 29 MyCertPath cp = new MyCertPath(testEncoding); local
30 MyCertPathRep rep = cp.new MyCertPathRep("MyEncoding", testEncoding);
35 cp.new MyCertPathRep(null, null);
43 MyCertPath cp = new MyCertPath(testEncoding); local
44 MyCertPathRep rep = cp.new MyCertPathRep("MyEncoding", testEncoding);
53 rep = cp.new MyCertPathRep("MyEncoding", new byte[] {(byte) 1, (byte) 2, (byte) 3 });
  /external/oprofile/daemon/liblegacy/
opd_parse_proc.c 48 char const * cp = line; local
51 while (*cp && *cp != ' ')
52 cp++;
55 if (!*cp || (!*(++cp)) || (!*(++cp)) || (*(++cp) != 'x'))
63 cp += 2;
66 if (sscanf(cp, "%lx", &offset) != 1
    [all...]
  /frameworks/base/tools/aapt/
Main.cpp 273 const char* cp = argv[0] +1; local
275 while (*cp != '\0') {
276 switch (*cp) {
475 if (strcmp(cp, "-debug-mode") == 0) {
477 } else if (strcmp(cp, "-min-sdk-version") == 0) {
486 } else if (strcmp(cp, "-target-sdk-version") == 0) {
495 } else if (strcmp(cp, "-max-sdk-version") == 0) {
504 } else if (strcmp(cp, "-max-res-version") == 0) {
513 } else if (strcmp(cp, "-version-code") == 0) {
522 } else if (strcmp(cp, "-version-name") == 0)
    [all...]
  /bionic/libc/netbsd/nameser/
ns_name.c 105 const u_char *cp; local
111 cp = src;
115 while ((n = *cp++) != 0) {
128 if ((l = labellen(cp - 1)) < 0) {
144 if ((m = decode_bitstring(&cp, dn, eom)) < 0)
153 c = *cp++;
210 char *cp; local
220 if ((cp = strchr(src, ']')) == NULL) {
224 if ((e = encode_bitsring(&src, cp + 2,
240 else if ((cp = strchr(digits, c)) != NULL)
340 const u_char *cp; local
643 const u_char *cp; local
742 const u_char *dn, *cp, *sp; local
799 const unsigned char *cp = *cpp; local
849 const char *cp = *bp; local
    [all...]
  /external/e2fsprogs/lib/ss/
test_ss.c 38 char *cp; local
66 cp = strchr(buf, '\n');
67 if (cp)
68 *cp = 0;
69 cp = strchr(buf, '\r');
70 if (cp)
71 *cp = 0;
  /external/javassist/src/main/javassist/bytecode/stackmap/
TypeData.java 42 static void setType(TypeData td, String className, ClassPool cp) throws BadBytecode {
46 td.setType(className, cp);
52 public abstract int getTypeData(ConstPool cp);
69 protected abstract void setType(String s, ClassPool cp) throws BadBytecode;
70 public abstract void evalExpectedType(ClassPool cp) throws BadBytecode;
92 public int getTypeData(ConstPool cp) { return 0; }
105 public void evalExpectedType(ClassPool cp) throws BadBytecode {}
115 protected void setType(String s, ClassPool cp) throws BadBytecode {
171 public int getTypeData(ConstPool cp) {
179 return getTypeData2(cp, type)
404 array.setType(getArrayType(typeName), cp); local
    [all...]
  /external/oprofile/libop/
op_parse_event.c 65 char const * cp = events[i]; local
66 char * part = next_part(&cp);
76 fprintf(stderr, "Invalid event %s\n", cp);
82 part = next_part(&cp);
93 part = next_part(&cp);
102 part = next_part(&cp);
110 part = next_part(&cp);
  /external/tcpdump/
print-igrp.c 83 register u_char *cp; local
87 cp = (u_char *)(hdr + 1);
108 TCHECK2(*cp, IGRP_RTE_SIZE);
109 igrp_entry_print((struct igrprte *)cp, 1, 0);
112 TCHECK2(*cp, IGRP_RTE_SIZE);
113 igrp_entry_print((struct igrprte *)cp, 0, 0);
116 TCHECK2(*cp, IGRP_RTE_SIZE);
117 igrp_entry_print((struct igrprte *)cp, 0, 1);
123 cp += IGRP_RTE_SIZE;
  /external/openssh/
auth-rsa.c 185 char *cp; local
190 for (cp = line; *cp == ' ' || *cp == '\t'; cp++)
192 if (!*cp || *cp == '\n' || *cp == '#')
201 if (*cp < '0' || *cp > '9')
    [all...]
  /hardware/ti/omap3/omx/system/src/openmax_il/perf/tests/
Makefile 25 cp -f $(COMPONENT_TEST) $(COMPONENT_TARGET)
26 cp -f _perf.ini $(OMXTESTDIR)
27 cp -f PERF.awk $(OMXTESTDIR)
28 cp -f perf $(TARGETDIR)/bin
29 cp -f armtime $(TARGETDIR)/bin
  /external/valgrind/main/memcheck/tests/
str_tester.c 67 char *cp; variable
122 char *cp; \
126 for (cp = one, __n = 0; __n < n; ++__n, ++cp) \
127 check (*cp == '0' + (n % 10), ntest); \
128 check (*cp == '\0', ntest); \
476 cp = strchrnul ((os = "abcd"), 'z');
477 check (*cp == '\0', 1); /* Not found. */
478 check (cp == os + 4, 2);
498 cp = strchrnul (p, '/')
    [all...]
  /external/e2fsprogs/e2fsck/
message.c 168 static void safe_print(const char *cp, int len)
173 len = strlen(cp);
176 ch = *cp++;
522 const char * cp; local
526 for (cp = msg; *cp; cp++) {
527 if (cp[0] == '@') {
528 cp++;
529 expand_at_expression(ctx, *cp, pctx, &first, recurse)
    [all...]
  /external/iputils/
iputils.spec 40 install -cp arping ${RPM_BUILD_ROOT}%{_sbindir}/
41 install -cp ping ${RPM_BUILD_ROOT}%{_bindir}/
42 install -cp rdisc ${RPM_BUILD_ROOT}%{_sbindir}/
43 install -cp ping6 ${RPM_BUILD_ROOT}%{_bindir}/
44 install -cp tracepath ${RPM_BUILD_ROOT}%{_bindir}/
45 install -cp tracepath6 ${RPM_BUILD_ROOT}%{_bindir}/
46 install -cp ninfod/ninfod ${RPM_BUILD_ROOT}%{_sbindir}/
54 install -cp doc/clockdiff.8 ${RPM_BUILD_ROOT}%{_mandir}/man8/
55 install -cp doc/arping.8 ${RPM_BUILD_ROOT}%{_mandir}/man8/
56 install -cp doc/ping.8 ${RPM_BUILD_ROOT}%{_mandir}/man8
    [all...]

Completed in 1665 milliseconds

1 2 3 4 56 7 8 91011>>