Searched refs:cp (Results 176 - 200 of 1406) sorted by relevance

1234567891011>>

/external/libedit/src/
H A Dsearch.c214 const Char *cp; local
242 for (cp = (newdir == ED_SEARCH_PREV_HISTORY) ? STRbck : STRfwd;
243 *cp; *el->el_line.lastchar++ = *cp++)
246 for (cp = &el->el_search.patbuf[LEN];
247 cp < &el->el_search.patbuf[el->el_search.patlen];
248 *el->el_line.lastchar++ = *cp++)
297 for (cp = &el->el_search.patbuf[LEN];; cp++)
298 if (cp >
531 Char *cp = el->el_line.cursor; local
599 Char *cp; local
[all...]
H A Dread.c313 read_char(EditLine *el, Char *cp) argument
339 *cp = '\0';
347 *cp = '\0';
356 if ((bytes = ct_mbtowc(cp, cbuf, cbp)) == -1) {
360 *cp = '\0';
369 (bytes = ct_mbtowc(cp, cbuf, cbp)) != 1)
371 *cp = (unsigned char)cbuf[0];
400 FUN(el,getc)(EditLine *el, Char *cp)
420 *cp = ma->macro[0][ma->offset++];
439 num_read = (*el->el_read.read_char)(el, cp);
488 Char ch, *cp; local
[all...]
/external/e2fsprogs/e2fsck/
H A Dmessage.c170 static void safe_print(FILE *f, const char *cp, int len) argument
175 len = strlen(cp);
178 ch = *cp++;
527 const char * cp; local
531 for (cp = msg; *cp; cp++) {
532 if (cp[0] == '@') {
533 cp++;
534 expand_at_expression(f, ctx, *cp, pct
[all...]
/external/ppp/pppd/
H A Dsrp-entry.c103 char *cp; local
145 if ((cp = strchr(pname, '\n')) != NULL)
146 *cp = '\0';
165 for (cp = name; *cp != '\0'; cp++)
166 if (isspace(*cp))
168 else if (*cp == '"')
170 else if (*cp == '\'')
172 else if (*cp
[all...]
/external/mksh/src/
H A Dexec.c64 char *cp; local
99 herein(t->ioact[0], &cp) == 0 && cp && *cp) {
100 char *sp = cp, *dp;
107 z = strlen(cp) + 1;
120 afree(cp, APERM);
498 const char *cp; local
540 if ((cp = *++ap) == NULL ||
541 (!strcmp(cp, "
852 unsigned char *cp; local
1294 char *cp = iop->name; local
[all...]
/external/chromium_org/third_party/libevent/test/
H A Dbench.c85 int *cp, space; local
89 for (cp = pipes, i = 0; i < num_pipes; i++, cp += 2) {
91 event_set(&events[i], cp[0], EV_READ | EV_PERSIST, read_cb, (void *) i);
129 int *cp; local
168 for (cp = pipes, i = 0; i < num_pipes; i++, cp += 2) {
170 if (pipe(cp) == -1) {
172 if (evutil_socketpair(AF_UNIX, SOCK_STREAM, 0, cp) == -1) {
/external/iptables/extensions/
H A Dlibip6t_dst.c58 char *buffer, *cp, *next, *range; local
65 for (cp = buffer, i = 0; cp && i < IP6T_OPTS_OPTSNR; cp = next, i++)
67 next = strchr(cp, ',');
72 range = strchr(cp, ':');
81 opts[i] = (parse_opts_num(cp, "opt") & 0xFF) << 8;
91 printf("opts str: %s %s\n", cp, range);
96 if (cp)
H A Dlibip6t_hbh.c60 char *buffer, *cp, *next, *range; local
66 for (cp=buffer, i=0; cp && i<IP6T_OPTS_OPTSNR; cp=next,i++)
68 next=strchr(cp, ',');
70 range = strchr(cp, ':');
77 opts[i] = (parse_opts_num(cp, "opt") & 0xFF) << 8;
87 printf("opts str: %s %s\n", cp, range);
91 if (cp) xtables_error(PARAMETER_PROBLEM, "too many addresses specified");
/external/e2fsprogs/intl/
H A Dlocalcharset.c112 const char *cp; local
114 cp = charset_aliases;
115 if (cp == NULL)
140 cp = "";
194 cp = "";
198 cp = res_ptr;
212 cp = "ISO8859-1" "\0" "ISO-8859-1" "\0"
236 cp = "CP936" "\0" "GBK" "\0"
254 charset_aliases = cp;
257 return cp;
324 ULONG cp[3]; local
[all...]
/external/javassist/src/main/javassist/compiler/
H A DAccessorMaker.java50 ConstPool cp = cf.getConstPool();
53 = new MethodInfo(cp, MethodInfo.nameInit, consDesc);
55 minfo.addAttribute(new SyntheticAttribute(cp));
58 minfo.addAttribute(ea.copy(cp, null));
61 Bytecode code = new Bytecode(cp);
109 ConstPool cp = cf.getConstPool();
112 = new MethodInfo(cp, accName, accDesc);
114 minfo.addAttribute(new SyntheticAttribute(cp));
117 minfo.addAttribute(ea.copy(cp, null));
121 Bytecode code = new Bytecode(cp);
[all...]
/external/e2fsprogs/lib/ext2fs/
H A Dbitops.c136 const unsigned char *cp = addr; local
140 while (((((unsigned long) cp) & 3) != 0) && (nbytes > 0)) {
141 res += popcount8(*cp++);
144 p = (const __u32 *) cp;
150 cp = (const unsigned char *) p;
153 res += popcount8(*cp++);
/external/javassist/src/main/javassist/bytecode/
H A DExceptionsAttribute.java31 ExceptionsAttribute(ConstPool cp, int n, DataInputStream in) argument
34 super(cp, n, in);
40 * @param cp constant pool table.
43 private ExceptionsAttribute(ConstPool cp, ExceptionsAttribute src, argument
45 super(cp, tag);
52 * @param cp constant pool table.
54 public ExceptionsAttribute(ConstPool cp) { argument
55 super(cp, tag);
H A DParameterAnnotationsAttribute.java60 * @param cp constant pool
67 public ParameterAnnotationsAttribute(ConstPool cp, String attrname, argument
69 super(cp, attrname, info);
78 * @param cp constant pool
83 public ParameterAnnotationsAttribute(ConstPool cp, String attrname) { argument
84 this(cp, attrname, new byte[] { 0 });
90 ParameterAnnotationsAttribute(ConstPool cp, int n, DataInputStream in) argument
93 super(cp, n, in);
/external/javassist/src/main/javassist/bytecode/annotation/
H A DArrayMemberValue.java36 public ArrayMemberValue(ConstPool cp) { argument
37 super('[', cp);
47 public ArrayMemberValue(MemberValue t, ConstPool cp) { argument
48 super('[', cp);
53 Object getValue(ClassLoader cl, ClassPool cp, Method method) argument
73 Array.set(a, i, values[i].getValue(cl, cp, method));
/external/llvm/lib/Support/
H A Dregex2.h119 #define MCadd(p, cs, cp) mcadd(p, cs, cp) /* llvm_regcomp() internal fns */
120 #define MCsub(p, cs, cp) mcsub(p, cs, cp)
121 #define MCin(p, cs, cp) mcin(p, cs, cp)
/external/nanopb-c/tools/
H A Dmake_linux_package.sh22 cp $DEST/generator/nanopb_generator.py $DEST/generator/protoc-gen-nanopb.py
32 cp `which protoc` $DEST/generator-bin/protoc.bin
34 cp $LIBPROTOC $DEST/generator-bin/
/external/pdfium/fpdfsdk/src/formfiller/
H A DFFL_TextField.cpp61 PWL_CREATEPARAM cp = CFFL_FormFiller::GetCreateParam(); local
69 cp.dwFlags |= PES_PASSWORD;
78 cp.dwFlags |= PES_MULTILINE | PES_AUTORETURN | PES_TOP;
82 cp.dwFlags |= PWS_VSCROLL | PES_AUTOSCROLL;
87 cp.dwFlags |= PES_CENTER;
91 cp.dwFlags |= PES_AUTOSCROLL;
97 cp.dwFlags |= PES_CHARARRAY;
102 cp.dwFlags |= PES_RICH;
105 cp.dwFlags |= PES_UNDO;
111 cp
133 NewPDFWindow(const PWL_CREATEPARAM& cp, CPDFSDK_PageView* pPageView) argument
[all...]
/external/elfutils/0.153/src/
H A Dobjdump.c323 char *cp = new_prefix; local
325 cp = stpcpy (cp, prefix);
326 cp = stpcpy (cp, fname);
327 stpcpy (cp, "[");
329 cp = new_suffix;
331 cp = stpcpy (cp, suffix);
332 stpcpy (cp, "]");
592 unsigned char *cp = data->d_buf; local
784 char *cp = fullname; local
[all...]
/external/chromium_org/chrome/tools/build/win/
H A Dmake_zip.sh28 # Use cp --parents to copy full relative directory. Since we need the
36 cp -r --parents "$f" "$output_abs"
/external/chromium_org/third_party/libsrtp/srtp/doc/
H A DMakefile32 cp latex/refman.pdf libsrtp.pdf
38 cp latex/refman.pdf crypto.pdf
/external/clang/test/Analysis/
H A Dnullptr.cpp37 char *cp = 0; local
38 if (np != cp)
/external/clang/utils/analyzer/
H A Dreducer.pl17 `cp $file $srcFile`;
64 `cp $srcFile $file.reduced`;
/external/jemalloc/android/scripts/
H A Dconf_arm.sh24 cp ${OUT}/obj/lib/libm.so ${OUT}/obj/lib/libpthread.so
H A Dconf_arm64.sh24 cp ${OUT}/obj/lib/libm.so ${OUT}/obj/lib/libpthread.so
H A Dconf_mips.sh24 cp ${OUT}/obj/lib/libm.so ${OUT}/obj/lib/libpthread.so

Completed in 707 milliseconds

1234567891011>>