HomeSort by relevance Sort by last modified time
    Searched defs:cp (Results 551 - 575 of 1197) sorted by null

<<21222324252627282930>>

  /external/libvncserver/libvncserver/
cursor.c 258 char* cp; local
269 for(j=0,cp=cursorString;j<height;j++)
270 for(i=0,bit=0x80;i<width;i++,bit=(bit&1)?0x80:bit>>1,cp++)
271 if(*cp!=' ') cursor->source[j*w+i/8]|=bit;
275 for(j=0,cp=maskString;j<height;j++)
276 for(i=0,bit=0x80;i<width;i++,bit=(bit&1)?0x80:bit>>1,cp++)
277 if(*cp!=' ') cursor->mask[j*w+i/8]|=bit;
446 unsigned char *cp; local
451 cp=cursor->richSource=(unsigned char*)calloc(cursor->width*bpp,cursor->height);
465 for(i=0,bit=0x80;i<cursor->width;i++,bit=(bit&1)?0x80:bit>>1,cp+=bpp
    [all...]
  /external/ltp/testcases/kernel/ipc/pipeio/
pipeio.c 186 char *cp; local
269 cp = optarg;
270 cp++;
271 if (*cp) {
272 if (sscanf(cp, "%i", &format_size) != 1) {
348 d = strtod(optarg, &cp);
349 if (*cp != '\0') {
362 d = strtod(optarg, &cp);
363 if (*cp != '\0') {
505 char *cp; local
620 char *cp; local
    [all...]
  /external/mesa3d/src/mesa/state_tracker/
st_program.c 1762 struct st_compute_program *cp = (struct st_compute_program*)target; local
    [all...]
  /external/mksh/src/
exec.c 106 char *cp, *dp; local
108 if ((rv = herein(t->ioact[0], &cp) /*? 1 : 0*/))
109 cp = NULL;
111 DOASNTILDE | DOSCALAR), rv ? null : cp);
114 afree(cp, APERM);
482 const char *cp; local
527 if ((cp = *++ap) == NULL ||
528 (!strcmp(cp, "--") && (cp = *++ap) == NULL)) {
532 if ((tp = findcom(cp, FC_BI)) == NULL
890 unsigned char *cp; local
1405 char *cp = iop->ioname; local
    [all...]
expr.c 555 const char *cp = es->tokp; local
561 --cp;
563 c = ord(*++cp);
569 ++cp;
572 es->tokp = cp;
578 c = ord(*++cp);
583 len = array_ref_len(cp);
586 cp += len;
592 strndupx(tvar, es->tokp, cp - es->tokp, ATEMP);
597 } else if (c == '1' && cp[1] == '#')
    [all...]
syn.c 202 yylval.cp = wdcopy(IONDELIM_delim, ATEMP);
207 iop->delim = yylval.cp;
216 iop->ioname = yylval.cp;
219 char *cp; local
222 nextiop->ioname = cp = alloc(3, ATEMP);
223 *cp++ = CHAR;
224 *cp++ = digits_lc[iop->unit % 10];
225 *cp = EOS;
331 is_wdvarassign(yylval.cp))
332 XPput(vars, yylval.cp);
1135 char *cp; local
    [all...]
  /external/netcat/
netcat.c 861 int hi, lo, cp; local
888 cp = hi;
890 lo = cp;
894 for (cp = lo; cp <= hi; cp++) {
898 snprintf(portlist[x], PORT_MAX_LEN, "%d", cp);
  /external/pdfium/third_party/libopenjpeg20/
tcd.h 267 opj_cp_t *cp; member in struct:opj_tcd
  /external/python/cpython2/Modules/
_hashopenssl.c 156 const unsigned char *cp = (const unsigned char *)vp; local
163 EVP_DigestUpdate(self->ctx, (const void*)cp, process);
165 cp += process;
496 const unsigned char *cp, Py_ssize_t len)
514 if (cp && len) {
517 EVP_hash(self, cp, len);
520 EVP_hash(self, cp, len);
ossaudiodev.c 365 char *cp; local
373 cp = PyString_AS_STRING(rv);
376 count = read(self->fd, cp, size);
392 char *cp; local
395 if (!PyArg_ParseTuple(args, "s#:write", &cp, &size)) {
400 rv = write(self->fd, cp, size);
414 char *cp; local
426 if (!PyArg_ParseTuple(args, "s#:write", &cp, &size))
447 rv = write(self->fd, cp, size);
458 cp += rv
    [all...]
  /external/python/cpython2/Objects/
codeobject.c 384 code_compare(PyCodeObject *co, PyCodeObject *cp)
387 cmp = PyObject_Compare(co->co_name, cp->co_name);
389 cmp = co->co_argcount - cp->co_argcount;
391 cmp = co->co_nlocals - cp->co_nlocals;
393 cmp = co->co_flags - cp->co_flags;
395 cmp = co->co_firstlineno - cp->co_firstlineno;
397 cmp = PyObject_Compare(co->co_code, cp->co_code);
399 cmp = PyObject_Compare(co->co_consts, cp->co_consts);
401 cmp = PyObject_Compare(co->co_names, cp->co_names);
403 cmp = PyObject_Compare(co->co_varnames, cp->co_varnames)
550 PyCodeObject *co, *cp; local
    [all...]
  /external/python/cpython2/Parser/
tokenizer.c 1336 char *tp, **cp; local
    [all...]
  /external/python/cpython3/Modules/_decimal/libmpdec/
io.c 442 char *decstring = NULL, *cp = NULL; local
453 cp = decstring = mpd_alloc(mem, sizeof *decstring);
454 if (cp == NULL) {
460 *cp++ = '-';
463 *cp++ = ' ';
466 *cp++ = '+';
471 strcpy(cp, "NaN");
472 cp += 3;
475 strcpy(cp, "sNaN");
476 cp += 4
670 const uchar *cp = (const uchar *)s; local
748 const char *cp = spec->grouping; local
769 char *cp = (char *)fmt; local
942 char *cp = dest->data + dest->cur; local
1137 char *cp; local
1445 char *cp; local
1470 char *cp; local
1506 char *cp; local
    [all...]
  /external/python/cpython3/Modules/
_hashopenssl.c 136 const unsigned char *cp = (const unsigned char *)vp; local
142 EVP_DigestUpdate(self->ctx, (const void*)cp, process);
144 cp += process;
449 const unsigned char *cp, Py_ssize_t len)
467 if (cp && len) {
470 EVP_hash(self, cp, len);
473 EVP_hash(self, cp, len);
ossaudiodev.c 457 const char *cp; local
485 cp = (const char *)data.buf;
499 rv = _Py_write(self->fd, cp, Py_MIN(size, INT_MAX));
514 cp += rv;
    [all...]
  /external/python/cpython3/Objects/
codeobject.c 602 PyCodeObject *co, *cp; local
614 cp = (PyCodeObject *)other;
616 eq = PyObject_RichCompareBool(co->co_name, cp->co_name, Py_EQ);
618 eq = co->co_argcount == cp->co_argcount;
620 eq = co->co_kwonlyargcount == cp->co_kwonlyargcount;
622 eq = co->co_nlocals == cp->co_nlocals;
624 eq = co->co_flags == cp->co_flags;
626 eq = co->co_firstlineno == cp->co_firstlineno;
628 eq = PyObject_RichCompareBool(co->co_code, cp->co_code, Py_EQ);
635 consts2 = _PyCode_ConstantKey(cp->co_consts)
    [all...]
  /external/python/cpython3/Python/
fileutils.c 43 UINT cp; local
54 cp = GetConsoleCP();
56 cp = GetConsoleOutputCP();
58 cp = 0;
61 if (cp != 0)
62 return PyUnicode_FromFormat("cp%u", (unsigned int)cp);
    [all...]
  /external/syslinux/com32/libutil/
sha256crypt.c 303 char *cp; local
402 cp = p_bytes = alloca(key_len);
404 cp = mempcpy(cp, temp_result, 32);
405 memcpy(cp, temp_result, cnt);
418 cp = s_bytes = alloca(salt_len);
420 cp = mempcpy(cp, temp_result, 32);
421 memcpy(cp, temp_result, cnt);
455 cp = stpncpy(buffer, sha256_salt_prefix, MAX(0, buflen))
666 char *cp = sha256_crypt(tests2[cnt].input, tests2[cnt].salt); local
    [all...]
sha512crypt.c 338 char *cp; local
437 cp = p_bytes = alloca(key_len);
439 cp = mempcpy(cp, temp_result, 64);
440 memcpy(cp, temp_result, cnt);
453 cp = s_bytes = alloca(salt_len);
455 cp = mempcpy(cp, temp_result, 64);
456 memcpy(cp, temp_result, cnt);
490 cp = stpncpy(buffer, sha512_salt_prefix, MAX(0, buflen))
735 char *cp = sha512_crypt(tests2[cnt].input, tests2[cnt].salt); local
    [all...]
  /external/syslinux/core/fs/fat/
fat.c 328 uint16_t cp; local
333 cp = *match++;
335 if (!cp)
338 if (cp != codepage.uni[0][c] && cp != codepage.uni[1][c])
362 uint8_t cp; member in struct:unicache
366 uint16_t cp; local
371 cp = *long_name++;
372 uc = &unicache[cp % 256];
374 if (__likely(uc->utf16 == cp)) {
    [all...]
  /external/syslinux/dos/
syslinux.c 575 char *cp = new_name + 3; local
595 *cp++ = c;
599 if (cp > new_name + 3) {
601 *cp++ = '\\';
603 memcpy(cp, filename, 12);
  /external/tcpdump/
print-nfs.c 478 register const u_char *cp; local
489 cp = (const u_char *)dp;
493 if (fn_printn(ndo, cp, len, ndo->ndo_snapend)) {
    [all...]
print-wb.c 184 const char *cp; local
205 cp = (const char *)(io + nid);
206 if (ND_TTEST2(cp, len)) {
208 fn_print(ndo, (const u_char *)cp, (const u_char *)cp + len);
  /external/v8/src/arm/
macro-assembler-arm.h 42 const Register cp = {Register::kCode_r7}; // JavaScript context pointer. member in namespace:v8::internal
    [all...]
  /external/v8/src/s390/
simulator-s390.h 122 cp = r13, enumerator in enum:v8::internal::Simulator::Register

Completed in 3560 milliseconds

<<21222324252627282930>>