HomeSort by relevance Sort by last modified time
    Searched defs:cp (Results 51 - 75 of 911) sorted by null

1 23 4 5 6 7 8 91011>>

  /bionic/libc/dns/resolv/
res_mkquery.c 128 register u_char *cp, *ep; local
150 cp = buf + HFIXEDSZ;
162 if (ep - cp < QFIXEDSZ)
164 if ((n = dn_comp(dname, cp, ep - cp - QFIXEDSZ, dnptrs,
167 cp += n;
168 ns_put16(type, cp);
169 cp += INT16SZ;
170 ns_put16(class, cp);
171 cp += INT16SZ
238 register u_char *cp, *ep; local
    [all...]
  /bionic/libc/upstream-openbsd/lib/libc/stdlib/
setenv.c 46 char **P, *cp; local
50 for (cp = str; *cp && *cp != '='; ++cp)
52 if (*cp != '=') {
57 if (__findenv(str, (int)(cp - str), &offset) != NULL) {
60 while (__findenv(str, (int)(cp - str), &offset)) {
  /dalvik/libdex/
OptInvocation.cpp 74 char* cp; local
107 cp = absoluteFile + 1;
108 while (*cp != '\0') {
109 if (*cp == '/') {
110 *cp = '@';
112 cp++;
  /external/boringssl/src/crypto/asn1/
x_long.c 114 char *cp = (char *)pval; local
117 memcpy(&ltmp, cp, sizeof(long));
151 char *cp = (char *)pval; local
174 memcpy(cp, &ltmp, sizeof(long));
  /external/clang/test/Sema/
overloadable-complex.c 34 char *cp = promote_or_convert(fc); // expected-error{{call to 'promote_or_convert' is ambiguous}} local
42 int *cp = promote_or_convert2(fc); local
49 char *cp = promote_or_convert3(sc); local
  /external/clang/test/SemaCXX/
complex-overload.cpp 34 char *cp = promote_or_convert(fc); local
42 int *cp = promote_or_convert2(fc); local
  /external/e2fsprogs/lib/e2p/
uuid.c 27 __u8 *cp; local
30 for (i=0, cp = uu; i < 16; i++)
31 if (*cp++)
  /external/e2fsprogs/lib/ext2fs/
bitops.c 136 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/e2fsprogs/lib/ss/
get_readline.c 47 char *tmp, *cp, *next; local
63 for (cp = tmp; cp; cp = next) {
64 next = strchr(cp, ':');
67 if (*cp == 0)
69 if ((handle = dlopen(cp, RTLD_NOW))) {
70 /* printf("Using %s for readline library\n", cp); */
  /external/e2fsprogs/resize/
test_extent.c 22 char *cp, *cmd, *arg1, *arg2; local
43 cp = strchr(buf, '\n');
44 if (cp)
45 *cp = '\0';
53 cp = strchr(buf, ' ');
54 if (cp) {
55 *cp++ = '\0';
56 arg1 = cp;
59 cp = strchr(cp, ' ');
    [all...]
  /external/giflib/
gif_font.c 161 const char *cp; local
166 for (cp = legend; *cp; cp++)
168 if (GifAsciiTable8x8[(short)(*cp)][i] & (1 << (GIF_FONT_WIDTH - j)))
213 const char *cp; local
216 for (cp = legend; *cp; cp++)
217 if (*cp == '\r')
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/util/
UnicodeLabel.java 26 int cp; local
27 for (int i = 0; i < s.length(); i+=UTF16.getCharCount(cp)) {
28 cp = UTF16.charAt(s,i);
30 sb.append(getValue(cp, withCodePoint));
  /external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/
UnicodeLabel.java 25 int cp; local
26 for (int i = 0; i < s.length(); i+=UTF16.getCharCount(cp)) {
27 cp = UTF16.charAt(s,i);
29 sb.append(getValue(cp, withCodePoint));
  /external/javassist/sample/evolve/
DemoLoader.java 31 ClassPool cp = ClassPool.getDefault(); local
33 cl.addTranslator(cp, translator);
  /external/javassist/src/main/javassist/bytecode/
EnclosingMethodAttribute.java 31 EnclosingMethodAttribute(ConstPool cp, int n, DataInputStream in)
34 super(cp, n, in);
40 * @param cp a constant pool table.
45 public EnclosingMethodAttribute(ConstPool cp, String className,
47 super(cp, tag);
48 int ci = cp.addClassInfo(className);
49 int ni = cp.addNameAndTypeInfo(methodName, methodDesc);
62 * @param cp a constant pool table.
65 public EnclosingMethodAttribute(ConstPool cp, String className) {
66 super(cp, tag)
102 ConstPool cp = getConstPool(); local
112 ConstPool cp = getConstPool(); local
    [all...]
  /external/libnfc-nci/src/adaptation/
CrcChecksum.cpp 77 const register unsigned char *cp = buffer; local
82 crc = ((crc >> 8) & 0xff) ^ crctab[(crc & 0xff) ^ *cp++];
  /external/libpcap/Win32/Src/
getservent.c 82 register char *cp, **q; local
91 cp = strpbrk(p, "#\n");
92 if (cp == NULL)
94 *cp = '\0';
102 cp = strpbrk(p, ",/");
103 if (cp == NULL)
105 *cp++ = '\0';
107 serv.s_proto = cp;
109 cp = strpbrk(cp, " \t")
    [all...]
  /external/opencv3/3rdparty/libjasper/
jpc_util.c 97 char *cp; local
102 if ((cp = strtok(buf, delim))) {
104 while ((cp = strtok(0, delim))) {
105 if (cp != '\0') {
119 if ((cp = strtok(buf, delim))) {
120 vs[n] = atof(cp);
122 while ((cp = strtok(0, delim))) {
123 if (cp != '\0') {
124 vs[n] = atof(cp);
  /external/pdfium/xfa/src/fgas/src/crt/
fx_codepage.cpp 23 const FX_CHARSET_MAP& cp = g_FXCharset2CodePageTable[iMid]; local
24 if (charset == cp.charset) {
25 return cp.codepage;
26 } else if (charset < cp.charset) {
49 const FX_CHARSET_MAP& cp = g_FXCodepage2CharsetTable[iMid]; local
50 if (codepage == cp.codepage) {
51 return cp.charset;
52 } else if (codepage < cp.codepage) {
203 const FX_LANG2CPMAP& cp = g_FXLang2CodepageTable[iMid]; local
204 if (wLanguage == cp.wLanguage) {
315 const FX_STR2CPHASH& cp = g_FXCPHashTable[iMid]; local
    [all...]
  /external/strace/
execve.c 43 } cp; local
48 cp.p64 = 1;
50 if (umoven_or_printaddr(tcp, addr, wordsize, cp.data))
53 cp.p64 = cp.p32;
54 if (cp.p64 == 0)
57 printstr(tcp, cp.p64, -1);
60 if (cp.p64)
68 char *cp = NULL; local
70 for (count = 0; !umoven(tcp, addr, current_wordsize, &cp) && cp; count++)
    [all...]
  /external/valgrind/coregrind/m_initimg/
initimg-pathscan.c 57 HChar *cp, *entry; local
64 entry = cp = colsep;
67 end = (*cp == '\0');
69 if (*cp == ':' || *cp == '\0') {
70 HChar save = *cp;
72 *cp = '\0';
74 *cp = save;
77 *cp = save;
78 entry = cp+1
    [all...]
  /external/valgrind/coregrind/m_ume/
script.c 79 HChar* cp; local
100 for (cp = interp; cp < end && !VG_(isspace)(*cp); cp++)
103 eol = (*cp == '\n');
105 *cp++ = '\0';
107 if (!eol && cp < end) {
109 while (cp < end && VG_(isspace)(*cp) && *cp != '\n'
    [all...]
  /external/valgrind/none/tests/x86/
bug126147-x86.c 139 char *cp; variable
  /external/vogar/src/vogar/
HostFileCache.java 35 private void cp(File source, File destination) { method in class:HostFileCache
36 List<String> rawResult = new Command.Builder(log).args("cp", source, destination).execute();
55 cp(cachedFile, destination); method
64 cp(source, temporary); method
  /external/vogar/src/vogar/android/
DexTask.java 46 Classpath cp = Classpath.of(jar); local
48 cp.addAll(classpath);
50 androidSdk.dex(localDex, cp);

Completed in 386 milliseconds

1 23 4 5 6 7 8 91011>>