HomeSort by relevance Sort by last modified time
    Searched refs:bufp (Results 1 - 25 of 60) sorted by null

1 2 3

  /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...]
  /ndk/sources/host-tools/sed-4.2.1/lib/
regex.c 38 # define re_match_2(bufp, string1, size1, string2, size2, pos, regs, stop) \
39 __re_match_2 (bufp, string1, size1, string2, size2, pos, regs, stop)
40 # define re_match(bufp, string, size, pos, regs) \
41 __re_match (bufp, string, size, pos, regs)
42 # define re_search(bufp, string, size, startpos, range, regs) \
43 __re_search (bufp, string, size, startpos, range, regs)
44 # define re_compile_pattern(pattern, length, bufp) \
45 __re_compile_pattern (pattern, length, bufp)
47 # define re_search_2(bufp, st1, s1, st2, s2, startpos, range, regs, stop) \
48 __re_search_2 (bufp, st1, s1, st2, s2, startpos, range, regs, stop
    [all...]
regexec.c 46 static regoff_t re_search_2_stub (struct re_pattern_buffer *bufp,
52 static regoff_t re_search_stub (struct re_pattern_buffer *bufp,
293 re_match() matches the compiled pattern in BUFP against the string,
305 If REGS is not NULL, and BUFP->no_sub is not set, the offsets of the match
315 re_match (bufp, string, length, start, regs)
316 struct re_pattern_buffer *bufp;
321 return re_search_stub (bufp, string, length, start, 0, length, regs, true);
328 re_search (bufp, string, length, start, range, regs)
329 struct re_pattern_buffer *bufp;
335 return re_search_stub (bufp, string, length, start, range, length, regs
    [all...]
  /system/core/include/cutils/
open_memstream.h 28 FILE* open_memstream(char** bufp, size_t* sizep);
  /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:__anon30674
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...]
  /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/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];
  /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...]
  /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/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/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...]
  /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/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;
  /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...]
  /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/qemu/distrib/sdl-1.2.12/src/video/
SDL_blit.h 233 Uint16 *bufp; \
236 bufp = (Uint16 *)buf; \
238 *bufp = Pixel | (*bufp & Amask); \
256 Uint32 *bufp; \
259 bufp = (Uint32 *)buf; \
261 *bufp = Pixel | (*bufp & Amask); \
  /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/ppp/pppd/plugins/rp-pppoe/
if.c 75 void dlinfoack(int fd, char *bufp);
78 void dlokack(int fd, char *bufp);
79 void dlbindack(int fd, char *bufp);
833 void dlinfoack(int fd, char *bufp)
841 ctl.buf = bufp;
907 void dlokack(int fd, char *bufp)
915 ctl.buf = bufp;
939 void dlbindack(int fd, char *bufp)
947 ctl.buf = bufp;
  /external/libpcap/
pcap-dlpi.c 1141 recv_ack(int fd, int size, const char *what, char *bufp, char *ebuf, int *uerror)
1156 ctl.buf = 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));
  /ndk/sources/host-tools/make-3.81/
variable.h 121 extern void install_variable_buffer PARAMS ((char **bufp, unsigned int *lenp));

Completed in 2015 milliseconds

1 2 3