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

1 2 3 4 5 67 8 91011>>

  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
Trie2_16.java 183 int cp = startingCP; local
194 if (cp >= limit) {
197 if (cp < 0x0d800 || (cp > 0x0dbff && cp <= 0x0ffff)) {
202 block = index[cp >> UTRIE2_SHIFT_2] << UTRIE2_INDEX_SHIFT;
203 } else if (cp < 0xffff) {
204 // Lead Surrogate Code Point, 0xd800 <= cp < 0xdc00
206 block = index[index2Block + ((cp - 0xd800) >> UTRIE2_SHIFT_2)] << UTRIE2_INDEX_SHIFT;
207 } else if (cp < highStart)
    [all...]
Trie2_32.java 180 int cp = startingCP; local
191 if (cp >= limit) {
194 if (cp < 0x0d800 || (cp > 0x0dbff && cp <= 0x0ffff)) {
199 block = index[cp >> UTRIE2_SHIFT_2] << UTRIE2_INDEX_SHIFT;
200 } else if (cp < 0xffff) {
201 // Lead Surrogate Code Point, 0xd800 <= cp < 0xdc00
203 block = index[index2Block + ((cp - 0xd800) >> UTRIE2_SHIFT_2)] << UTRIE2_INDEX_SHIFT;
204 } else if (cp < highStart)
    [all...]
  /external/iptables/extensions/
libip6t_hbh.c 60 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/javassist/src/test/test/javassist/proxy/
ProxySimpleTest.java 17 ProxyFactory.ClassLoaderProvider cp = ProxyFactory.classLoaderProvider; local
30 ProxyFactory.classLoaderProvider = cp;
  /external/libedit/src/
emacs.c 93 Char *cp, *p, *kp; local
98 cp = c__next_word(el->el_line.cursor, el->el_line.lastchar,
101 for (p = el->el_line.cursor, kp = el->el_chared.c_kill.buf; p < cp; p++)
106 c_delafter(el, (int)(cp - el->el_line.cursor)); /* delete after dot */
122 Char *kp, *cp; local
133 cp = el->el_line.cursor;
140 *cp++ = *kp;
144 el->el_line.cursor = cp;
158 Char *kp, *cp; local
160 cp = el->el_line.buffer
180 Char *kp, *cp; local
213 Char *kp, *cp; local
287 Char *cp, *ep; local
311 Char *cp, *ep; local
343 Char *cp, *ep; local
381 Char *cp; local
442 Char *cp, *oldc, *dp; local
    [all...]
  /external/libevent/
ht-internal.h 90 const unsigned char *cp = (const unsigned char *)s; local
91 h = *cp << 7;
92 while (*cp) {
93 h = (1000003*h) ^ *cp++;
96 h ^= (unsigned)(cp-(const unsigned char*)s);
  /external/libpcap/
pcap-bt-monitor-linux.c 223 const char *cp; local
225 cp = strrchr(device, '/');
226 if (cp == NULL)
227 cp = device;
229 if (strcmp(cp, INTERFACE_NAME) != 0) {
pcap-can-linux.c 97 const char *cp; local
103 cp = strrchr(device, '/');
104 if (cp == NULL)
105 cp = device;
107 if (strncmp(cp, "can", 3) == 0) {
109 cp += 3; /* skip past "can" */
110 } else if (strncmp(cp, "vcan", 4) == 0) {
112 cp += 4;
119 devnum = strtol(cp, &cpend, 10);
120 if (cpend == cp || *cpend != '\0')
    [all...]
pcap-nit.c 107 register u_char *bp, *cp, *ep; local
154 cp = bp + sizeof(*nh);
182 if (bpf_filter(p->fcode.bf_insns, cp, nh->nh_wirelen, caplen)) {
187 (*callback)(user, &h, cp);
pcap-septel.c 219 const char *cp; local
223 cp = strrchr(device, '/');
224 if (cp == NULL)
225 cp = device;
226 if (strcmp(cp, "septel") != 0) {
pcap-snoop.c 72 register u_char *cp; local
115 cp = (u_char *)(sh + 1) + p->offset; /* XXX */
123 if (p->linktype == DLT_NULL && *((short *)(cp + 2)) == 0) {
124 u_int *uip = (u_int *)cp;
129 bpf_filter(p->fcode.bf_insns, cp, datalen, caplen)) {
136 (*callback)(user, &h, cp);
  /external/ltp/testcases/kernel/syscalls/getcwd/
getcwd02.c 92 char *cp; local
109 if ((cp = strchr(pwd_buf, '\n')) == NULL) {
112 *cp = 0;
getcwd03.c 225 char *cp; local
234 if ((cp = strchr(buf, '\n')) == NULL) {
237 *cp = 0;
  /external/ltp/testcases/realtime/perf/latency/
pthread_cond_latency.c 90 pthread_cond_t *cp = (pthread_cond_t *) arg; local
95 if (pthread_cond_wait(cp, &child_mutex) != 0) {
  /external/lzma/CPP/7zip/Crypto/
7zAes.cpp 222 CMyComPtr<ICryptoProperties> cp; local
223 RINOK(_aesFilter.QueryInterface(IID_ICryptoProperties, &cp));
224 RINOK(cp->SetKey(_key.Key, sizeof(_key.Key)));
225 RINOK(cp->SetInitVector(_iv, sizeof(_iv)));
  /external/mesa3d/src/mesa/math/
m_eval.c 74 _math_horner_bezier_curve(const GLfloat * cp, GLfloat * out, GLfloat t,
85 out[k] = s * cp[k] + bincoeff * t * cp[dim + k];
87 for (i = 2, cp += 2 * dim, powert = t * t; i < order;
88 i++, powert *= t, cp += dim) {
93 out[k] = s * out[k] + bincoeff * powert * cp[k];
99 out[k] = cp[k];
121 GLfloat *cp = cn + uorder * vorder * dim; local
139 cp[j * dim + k] = s * ucp[k] + bincoeff * u * ucp[uinc + k];
147 cp[j * dim + k]
    [all...]
  /external/openssh/
compat.c 262 char *cp, *tmp; local
266 while ((cp = strsep(&tmp, ",")) != NULL) {
267 if (match_pattern_list(cp, filter, 0) != 1) {
270 buffer_append(&b, cp, strlen(cp));
272 debug2("Compat: skipping algorithm \"%s\"", cp);
match.c 243 char *c, *s, *p, *ret, *cp, *sp; local
246 c = cp = xstrdup(client);
258 for ((p = strsep(&cp, SEP)), i=0; p && *p != '\0';
259 (p = strsep(&cp, SEP)), i++) {
264 *next = (cp == NULL) ?
265 strlen(c) : (u_int)(cp - c);
  /external/pdfium/fpdfsdk/formfiller/
cffl_listbox.cpp 27 PWL_CREATEPARAM cp = CFFL_FormFiller::GetCreateParam(); local
32 cp.dwFlags |= PLBS_MULTIPLESEL;
35 cp.dwFlags |= PWS_VSCROLL;
37 if (cp.dwFlags & PWS_AUTOFONTSIZE)
38 cp.fFontSize = FFL_DEFAULTLISTBOXFONTSIZE;
44 cp.pFontMap = m_pFontMap.get();
46 return cp;
49 CPWL_Wnd* CFFL_ListBox::NewPDFWindow(const PWL_CREATEPARAM& cp,
53 pWnd->Create(cp);
  /external/ppp/pppd/
srp-entry.c 103 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/selinux/libselinux/src/
context.c 134 char *cp = n->current_str; local
136 cp = stpcpy(cp, n->component[0]);
139 *cp++ = ':';
140 cp = stpcpy(cp, n->component[i]);
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue148/
PrintableUnicodeTest.java 45 int cp = (int) serialized.charAt(i); local
46 if (!isAcceptable(cp))
49 cp));
50 if (!isPrintable(cp))
53 cp));
  /external/syslinux/com32/elflink/ldlinux/
colors.c 72 struct color_table *cp = tbl + message_base_color; local
116 cp->argb_fg = fg_rgb;
117 cp->argb_bg = bg_rgb;
118 cp->shadow = shadow;
119 cp++;
127 struct color_table *cp; local
136 cp = color_table;
139 *cp = *dp;
140 cp->ansi = refstrdup(dp->ansi);
141 cp++
168 struct color_table *color_table, *cp; local
    [all...]
  /external/syslinux/com32/menu/
colors.c 72 struct color_table *cp = tbl + message_base_color; local
116 cp->argb_fg = fg_rgb;
117 cp->argb_bg = bg_rgb;
118 cp->shadow = shadow;
119 cp++;
127 struct color_table *cp; local
136 cp = color_table;
139 *cp = *dp;
140 cp->ansi = refstrdup(dp->ansi);
141 cp++
168 struct color_table *color_table, *cp; local
    [all...]
  /external/tcpdump/
print-ip6.c 81 register const u_char *cp; local
140 cp = (const u_char *)ip6;
143 while (cp < ndo->ndo_snapend && advance > 0) {
144 cp += advance;
147 if (cp == (const u_char *)(ip6 + 1) &&
156 advance = hbhopt_print(ndo, cp);
157 nh = *cp;
160 advance = dstopt_print(ndo, cp);
161 nh = *cp;
164 advance = frag6_print(ndo, cp, (const u_char *)ip6)
    [all...]

Completed in 2342 milliseconds

1 2 3 4 5 67 8 91011>>