HomeSort by relevance Sort by last modified time
    Searched defs:cp (Results 151 - 175 of 572) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/e2fsprogs/util/
subst.c 82 char *cp, *start; local
97 for (cp = start; *cp; cp++) {
98 if (!(*cp >= 'a' && *cp <= 'z') &&
99 !(*cp >= 'A' && *cp <= 'Z') &&
100 !(*cp >= '0' && *cp <= '9') &
212 char *cp, *ptr; local
    [all...]
  /external/icu4c/common/
ucnvlat1.c 141 UChar32 cp; local
161 cp=cnv->fromUChar32;
164 sourceIndex= cp==0 ? 0 : -1;
176 if(cp!=0 && targetCapacity>0) {
266 cp=c;
267 if(!U_IS_SURROGATE(cp)) {
269 } else if(U_IS_SURROGATE_LEAD(cp)) {
276 cp=U16_GET_SUPPLEMENTARY(cp, trail);
285 cnv->fromUChar32=cp;
    [all...]
  /external/icu4c/i18n/
uspoof_wsconf.cpp 221 UChar32 cp; local
222 for (cp=startCodePoint; cp<=endCodePoint; cp++) {
223 int32_t setIndex = utrie2_get32(table, cp);
234 bsset->codePoint = cp;
245 utrie2_set32(table, cp, setIndex, &status);
253 UScriptCode cpScript = uscript_getScript(cp, &status);
  /external/ipsec-tools/src/racoon/
getcertsbyname.c 126 char *cp; local
164 cp = rr->rri_rdatas[i].rdi_data;
166 GETSHORT(type, cp); /* type */
168 GETSHORT(keytag, cp); /* key tag */
170 algorithm = *cp++; /* algorithm */
180 rr->rri_flags, rdlength, cp);
212 unsigned char *cp, *eom; local
264 cp = (unsigned char *)(hp + 1);
265 len = dn_expand(answer, eom, cp, hostbuf, sizeof(hostbuf));
272 cp += len
    [all...]
  /external/iptables/extensions/
libip6t_mh.c 108 char *cp; local
111 if ((cp = strchr(buffer, ':')) == NULL)
114 *cp = '\0';
115 cp++;
118 types[1] = cp[0] ? name_to_type(cp) : 0xFF;
libip6t_rt.c 74 char *buffer, *cp, *next; local
80 for (cp=buffer, i=0; cp && i<IP6T_RT_HOPS; cp=next,i++)
82 next=strchr(cp, ',');
84 memcpy(&(addrp[i]), numeric_to_addr(cp), sizeof(struct in6_addr));
86 printf("addr str: %s\n", cp);
87 printf("addr ip6: %s\n", addr_to_numeric((numeric_to_addr(cp))));
91 if (cp) xtables_error(PARAMETER_PROBLEM, "too many addresses specified");
libxt_sctp.c 70 char *cp; local
74 if ((cp = strchr(buffer, ':')) == NULL) {
78 *cp = '\0';
79 cp++;
82 ports[1] = cp[0] ? xtables_parse_port(cp, "sctp") : 0xFFFF;
libxt_tcp.c 44 char *cp; local
47 if ((cp = strchr(buffer, ':')) == NULL)
50 *cp = '\0';
51 cp++;
54 ports[1] = cp[0] ? xtables_parse_port(cp, "tcp") : 0xFFFF;
  /external/javassist/src/main/javassist/bytecode/
InnerClassesAttribute.java 31 InnerClassesAttribute(ConstPool cp, int n, DataInputStream in)
34 super(cp, n, in);
37 private InnerClassesAttribute(ConstPool cp, byte[] info) {
38 super(cp, tag, info);
46 public InnerClassesAttribute(ConstPool cp) {
47 super(cp, tag, new byte[2]);
210 ConstPool cp = getConstPool(); local
222 innerClass = cp.copy(innerClass, newCp, classnames);
227 outerClass = cp.copy(outerClass, newCp, classnames);
232 innerName = cp.copy(innerName, newCp, classnames)
    [all...]
  /external/javassist/src/main/javassist/bytecode/annotation/
Annotation.java 66 * @param cp the constant pool table.
70 public Annotation(int type, ConstPool cp) {
71 pool = cp;
81 * @param cp the constant pool table.
85 public Annotation(String typeName, ConstPool cp) {
86 this(cp.addUtf8Info(Descriptor.of(typeName)), cp);
94 * @param cp the constant pool table.
98 public Annotation(ConstPool cp, CtClass clazz)
102 this(cp.addUtf8Info(Descriptor.of(clazz.getName())), cp)
    [all...]
  /external/javassist/src/main/javassist/expr/
Handler.java 79 ConstPool cp = getConstPool(); local
80 String name = cp.getClassInfo(type);
111 ConstPool cp = getConstPool(); local
  /external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/collision/
PhysicsCollisionEvent.java 54 private ManifoldPoint cp; field in class:PhysicsCollisionEvent
56 public PhysicsCollisionEvent(int type, PhysicsCollisionObject source, PhysicsCollisionObject nodeB, ManifoldPoint cp) {
61 this.cp = cp;
72 cp = null;
78 public void refactor(int type, PhysicsCollisionObject source, PhysicsCollisionObject nodeB, ManifoldPoint cp) {
83 this.cp = cp;
119 return cp.appliedImpulse;
123 return cp.appliedImpulseLateral1
    [all...]
  /external/libpcap/bpf/net/
bpf_filter.c 138 register u_char *cp, *np; local
142 cp = mtod(m, u_char *) + k;
145 return EXTRACT_LONG(cp);
155 return (cp[0] << 24) | (np[0] << 16) | (np[1] << 8) | np[2];
158 return (cp[0] << 24) | (cp[1] << 16) | (np[0] << 8) | np[1];
161 return (cp[0] << 24) | (cp[1] << 16) | (cp[2] << 8) | np[0];
174 register u_char *cp; local
    [all...]
  /external/libpcap/
pcap-snit.c 117 register u_char *bp, *cp, *ep; local
165 cp = bp;
168 hdrp = (struct nit_bufhdr *)cp;
169 cp += sizeof(*hdrp);
172 ntp = (struct nit_iftime *)cp;
173 cp += sizeof(*ntp);
175 ndp = (struct nit_ifdrops *)cp;
177 cp += sizeof *ndp;
180 nlp = (struct nit_iflen *)cp;
181 cp += sizeof(*nlp)
    [all...]
  /external/libppp/src/
filter.c 79 char *cp; local
86 port = strtol(service, &cp, 0);
87 if (cp == service) {
102 char *cp; local
112 type = strtol(argv[2], &cp, 0);
113 if (cp == argv[2]) {
549 filter_Nam2Op(const char *cp)
554 if (!strcasecmp(cp, opname[op]))
hdlc.c 110 hdlc_Fcs(u_char *cp, size_t len)
115 fcs = (fcs >> 8) ^ fcstab[(fcs ^ *cp++) & 0xff];
145 u_char *cp; local
156 cp = MBUF_CTOP(last) + last->m_len;
161 cp = MBUF_CTOP(tail);
164 *cp++ = fcs & 0377; /* Low byte first (nothing like consistency) */
165 *cp++ = fcs >> 8;
361 hdlc_Detect(u_char const **cp, unsigned n, int issync)
372 if (memcmp(*cp, h, cmp) == 0)
376 (*cp)++
    [all...]
pred.c 179 u_char *cp, *wp, *hp; local
187 cp = bufp;
188 *wp++ = *cp++ = orglen >> 8;
189 *wp++ = *cp++ = orglen & 0377;
190 *cp++ = *proto >> 8;
191 *cp++ = *proto & 0377;
192 mbuf_Read(bp, cp, orglen - 2);
220 u_char *cp, *pp; local
227 cp = MBUF_CTOP(bp);
230 *pp++ = *cp & 0177
    [all...]
  /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...]
auth2-pubkey.c 204 char line[SSH_MAX_PUBKEY_BYTES], *cp, *ep, *line_opts; local
216 for (cp = line; *cp == ' ' || *cp == '\t'; cp++)
219 if ((ep = strchr(cp, '#')) != NULL)
221 if (!*cp || *cp == '\n')
224 ep = cp + strlen(cp) - 1
284 char *cp, *key_options = NULL; local
    [all...]
dh.c 46 char *cp, *arg; local
51 cp = line;
52 if ((arg = strdelim(&cp)) == NULL)
56 arg = strdelim(&cp);
61 if (cp == NULL || *arg == '\0')
63 arg = strsep(&cp, " "); /* type */
64 if (cp == NULL || *arg == '\0')
70 arg = strsep(&cp, " "); /* tests */
71 if (cp == NULL || *arg == '\0')
78 arg = strsep(&cp, " "); /* tries *
    [all...]
  /external/openssh/openbsd-compat/
bsd-misc.c 234 char *cp; local
237 cp = malloc(len);
238 if (cp != NULL)
239 return(memcpy(cp, str, len));
  /external/openssl/ssl/
s2_lib.c 420 const SSL_CIPHER *cp; local
426 cp = OBJ_bsearch_ssl_cipher_id(&c, ssl2_ciphers, SSL2_NUM_CIPHERS);
427 if ((cp == NULL) || (cp->valid == 0))
430 return cp;
s2_srvr.c 369 const SSL_CIPHER *cp; local
394 cp=ssl2_get_cipher_by_char(p);
395 if (cp == NULL)
401 s->session->cipher= cp;
922 const unsigned char *cp; local
1040 cp = p;
1041 x509=(X509 *)d2i_X509(NULL,&cp,(long)s->s2->tmp.clen);
1087 i=EVP_VerifyFinal(&ctx,cp,s->s2->tmp.rlen,pkey);
  /external/tcpdump/
print-bootp.c 64 bootp_print(register const u_char *cp, u_int length)
70 bp = (const struct bootp *)cp;
367 register const char *cp; local
394 cp = tok2str(xtag2str, "?xT%u", tag);
396 cp = tok2str(tag2str, "?T%u", tag);
397 c = *cp++;
407 printf("\n\t %s Option %u, length %u%s", cp, tag, len,
435 cp = tok2str(tag2str, "?Option %u", uc);
440 printf("%s", cp + 1);
452 cp = tok2str(xtag2str, "?xT%u", us)
    [all...]
  /external/valgrind/main/coregrind/
launcher-linux.c 246 const char *cp; local
358 cp = getenv(VALGRIND_LIB);
360 if (cp != NULL)
361 valgrind_lib = cp;

Completed in 570 milliseconds

1 2 3 4 5 67 8 91011>>