HomeSort by relevance Sort by last modified time
    Searched defs:bufp (Results 1 - 22 of 22) sorted by null

  /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:__anon15942
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/chromium/third_party/icu/source/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/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/chromium/third_party/icu/source/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/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 784 int bufp, bufe, bufi, readlen; local
815 bufp = 0;
820 bufi = bufp;
826 LOGV("Processing line: %s\n", buf+bufp);
828 while (bufp < bufi && isspace(buf[bufp])) {
830 bufp++;
832 if (buf[bufp] == '#' || bufp == bufi) {
837 UPDATE_COMMANDS_DIR_PREFIX, name, buf+bufp);
    [all...]
  /external/icu4c/extra/uconv/
uconv.cpp 623 char *bufp; local
939 // Again 'bufp' will be placed behind the last converted character
947 bufp = outbuf;
952 ucnv_fromUnicode(convto, &bufp, outbuf + bufsz,
    [all...]
  /hardware/broadcom/wlan/bcm4329/src/dhd/exe/
dhdu.c 1150 char *bufp, *countptr;
1165 bufp = buf;
1166 memset(bufp, 0, DHD_IOCTL_MAXLEN);
1167 strcpy(bufp, "sprom");
1168 bufp += strlen("sprom") + 1;
1179 memcpy(bufp, &offset, sizeof(int));
1180 bufp += sizeof(int);
1181 memcpy(bufp, &bytes, sizeof(int));
1182 bufp += sizeof(int);
1184 if (!ISALIGNED((uintptr)bufp, sizeof(uint16)))
1388 char *bufp; local
1456 char *bufp; local
    [all...]
  /hardware/broadcom/wlan/bcm4329/src/dhd/sys/
dhd_linux.c 754 char *buf, *bufp; local
774 if (!(bufp = buf = MALLOC(dhd->pub.osh, buflen))) {
780 strcpy(bufp, "mcast_list");
781 bufp += strlen("mcast_list") + 1;
784 memcpy(bufp, &cnt, sizeof(cnt));
785 bufp += sizeof(cnt);
792 memcpy(bufp, ha->addr, ETHER_ADDR_LEN);
793 bufp += ETHER_ADDR_LEN;
798 memcpy(bufp, (void *)mclist->dmi_addr, ETHER_ADDR_LEN);
799 bufp += ETHER_ADDR_LEN
    [all...]
dhd_sdio.c 5608 char *bufp; local
    [all...]

Completed in 351 milliseconds