/external/openssl/crypto/asn1/ |
f_enum.c | 104 unsigned char *bufp; local 135 bufp=(unsigned char *)buf; 139 if ((bufp[0] == '0') && (buf[1] == '0')) 141 bufp+=2; 174 m=bufp[k+n];
|
f_int.c | 108 unsigned char *bufp; local 148 bufp=(unsigned char *)buf; 152 if ((bufp[0] == '0') && (buf[1] == '0')) 154 bufp+=2; 186 m=bufp[k+n];
|
f_string.c | 102 unsigned char *bufp; local 148 bufp=(unsigned char *)buf; 179 m=bufp[k+n];
|
/system/core/libcutils/ |
open_memstream.c | 28 * - The values at "*bufp" and "*sizep" should be considered read-only, 38 * - After fclose(), the caller must eventually free(*bufp). 68 char** bufp; /* pointer to buffer pointer */ member in struct:__anon25999 106 stream->bufp, *stream->bufp, newSize)); 107 char* newBuf = (char*) realloc(*stream->bufp, newSize); 111 *stream->bufp = newBuf; 134 memset(*stream->bufp + stream->eof, '\0', 139 memcpy(*stream->bufp + stream->offset, buf, size); 150 *(*stream->bufp + stream->offset), stream->offset)) [all...] |
/bootable/recovery/mtdutils/ |
mounts.c | 63 const char *bufp; local 114 bufp = buf; 124 matches = sscanf(bufp, "%63s %63s %63s %127s", 140 printf("matches was %d on <<%.40s>>\n", matches, bufp); 145 while (nbytes > 0 && *bufp != '\n') { 146 bufp++; 150 bufp++;
|
mtdutils.c | 74 const char *bufp; local 129 bufp = buf; 137 matches = sscanf(bufp, "mtd%d: %x %x \"%63[^\"]", 157 while (nbytes > 0 && *bufp != '\n') { 158 bufp++; 162 bufp++;
|
/external/srec/srec/crec/ |
srec_debug.c | 28 char *bufp = &buf[0]; local 35 bufp += sprintf(bufp, "%d,", awtoken->word); 38 if (bufp > &buf[0]) *(bufp - 1) = 0;
|
/external/ppp/pppd/ |
cbcp.c | 369 u_char *bufp = buf; local 388 PUTCHAR(CB_CONF_USER, bufp); 390 PUTCHAR(len , bufp); 391 PUTCHAR(5, bufp); /* delay */ 392 PUTCHAR(1, bufp); 393 BCOPY(us->us_number, bufp, slen + 1); 400 PUTCHAR(CB_CONF_ADMIN, bufp); 402 PUTCHAR(len, bufp); 403 PUTCHAR(5, bufp); /* delay */ 410 PUTCHAR(CB_CONF_NO, bufp); [all...] |
/external/qemu/distrib/sdl-1.2.12/src/main/win32/ |
SDL_win32_main.c | 59 char *bufp; local 63 for ( bufp = cmdline; *bufp; ) { 65 while ( isspace(*bufp) ) { 66 ++bufp; 69 if ( *bufp == '"' ) { 70 ++bufp; 71 if ( *bufp ) { 73 argv[argc] = bufp; 78 while ( *bufp && (*bufp != '"') ) 177 char *bufp, *appname; local 238 wchar_t *bufp; local 241 char *bufp; local [all...] |
/external/bluetooth/glib/tests/ |
gio-test.c | 73 char *bufp = buffer; local 81 error = g_io_channel_read (channel, bufp, left, &nb); 96 bufp += nb;
|
/external/icu4c/test/letest/ |
gendata.cpp | 68 le_int32 bufp = 0; local 73 if (i % 8 == 0 && bufp != 0) { 75 bufp = 0; 78 bufp += sprintf(&lineBuffer[bufp], "0x%8.8X, ", longs[i]); 81 if (bufp != 0) { 82 lineBuffer[bufp - 2] = '\0'; 91 le_int32 bufp = 0; local 96 if (i % 8 == 0 && bufp != 0) { 98 bufp = 0 [all...] |
/external/qemu/distrib/sdl-1.2.12/src/main/macos/ |
SDL_main.c | 82 char *bufp; local 86 for ( bufp = cmdline; *bufp; ) { 88 while ( SDL_isspace(*bufp) ) { 89 ++bufp; 92 if ( *bufp == '"' ) { 93 ++bufp; 94 if ( *bufp ) { 96 argv[argc] = bufp; 101 while ( *bufp && (*bufp != '"') ) [all...] |
/external/icu4c/tools/genrb/ |
derb.c | 421 char *bufp = buf, *bufend = buf + sizeof(buf) - 1 ; local 423 ucnv_fromUnicode(converter, &bufp, bufend, &str, strEnd, 0, 0, &err); 424 *bufp = 0; 441 UChar *bufp = buf, *bufend = buf + (sizeof(buf)/sizeof(buf[0])) - 1 ; local 443 ucnv_toUnicode(defaultConverter, &bufp, bufend, &str, strEnd, 0, 0, &err); 444 *bufp = 0; 446 printString(out, converter, buf, (int32_t)(bufp - buf));
|
/external/openssl/crypto/ |
mem_dbg.c | 667 char *bufp = buf; local 673 #define BUF_REMAIN (sizeof buf - (size_t)(bufp - buf)) 682 BIO_snprintf(bufp, BUF_REMAIN, "[%02d:%02d:%02d] ", 684 bufp += strlen(bufp); 687 BIO_snprintf(bufp, BUF_REMAIN, "%5lu file=%s, line=%d, ", 689 bufp += strlen(bufp); 693 BIO_snprintf(bufp, BUF_REMAIN, "thread=%lu, ", 695 bufp += strlen(bufp) [all...] |
/external/qemu/distrib/sdl-1.2.12/src/stdlib/ |
SDL_string.c | 384 char *bufp = string; local 385 while ( *bufp ) { 386 *bufp = SDL_toupper((unsigned char) *bufp); 387 ++bufp; 396 char *bufp = string; local 397 while ( *bufp ) { 398 *bufp = SDL_tolower((unsigned char) *bufp); 399 ++bufp; 421 const char *bufp = string + SDL_strlen(string) - 1; local 459 char *bufp = string; local 489 char *bufp = string; local 557 char *bufp = string; local 587 char *bufp = string; local [all...] |
/frameworks/base/cmds/installd/ |
commands.c | 693 int bufp, bufe, bufi, readlen; local 724 bufp = 0; 729 bufi = bufp; 735 LOGV("Processing line: %s\n", buf+bufp); 737 while (bufp < bufi && isspace(buf[bufp])) { 739 bufp++; 741 if (buf[bufp] == '#' || bufp == bufi) { 746 UPDATE_COMMANDS_DIR_PREFIX, name, buf+bufp); [all...] |
/device/moto/wingray/libaudio/ |
AudioHardware.cpp | 1193 int16_t *bufp = (int16_t*)buffer; local 1235 int16_t* bufp = (int16_t *)buffer; local [all...] |
/external/icu4c/extra/uconv/ |
uconv.cpp | 597 char *bufp; local 913 // Again 'bufp' will be placed behind the last converted character 921 bufp = outbuf; 926 ucnv_fromUnicode(convto, &bufp, outbuf + bufsz, [all...] |
/hardware/broadcom/wlan/bcm4329/dhdutil/ |
dhdu.c | 1187 char *bufp, *countptr; 1202 bufp = buf; 1203 memset(bufp, 0, DHD_IOCTL_MAXLEN); 1204 strcpy(bufp, "sprom"); 1205 bufp += strlen("sprom") + 1; 1216 memcpy(bufp, &offset, sizeof(int)); 1217 bufp += sizeof(int); 1218 memcpy(bufp, &bytes, sizeof(int)); 1219 bufp += sizeof(int); 1221 if (!ISALIGNED((uintptr)bufp, sizeof(uint16))) 1425 char *bufp; local 1494 char *bufp; local [all...] |
/hardware/broadcom/wlan/bcmdhd/dhdutil/ |
dhdu.c | 1187 char *bufp, *countptr; 1202 bufp = buf; 1203 memset(bufp, 0, DHD_IOCTL_MAXLEN); 1204 strcpy(bufp, "sprom"); 1205 bufp += strlen("sprom") + 1; 1216 memcpy(bufp, &offset, sizeof(int)); 1217 bufp += sizeof(int); 1218 memcpy(bufp, &bytes, sizeof(int)); 1219 bufp += sizeof(int); 1221 if (!ISALIGNED((uintptr)bufp, sizeof(uint16))) 1425 char *bufp; local 1494 char *bufp; local [all...] |
/external/opencv/cv/src/ |
cvimgwarp.cpp | 2206 CvMat bufx, bufy, bufp, bufa; local [all...] |