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

  /ndk/sources/host-tools/nawk-20071023/
lex.c 538 char ebuf[300]; variable
539 char *ep = ebuf;
560 if (ep >= ebuf + sizeof ebuf)
561 ep = ebuf;
572 if (--ep < ebuf)
573 ep = ebuf + sizeof(ebuf) - 1;
  /external/iputils/ninfod/
ninfod.c 167 char ebuf[512]; local
173 for (buf = ebuf, buflen = sizeof(ebuf);
175 free(buf != ebuf ? buf : NULL), buf = NULL, buflen *= 2) {
199 free(buf != ebuf ? buf : NULL);
  /external/tcpdump/
tcpdump.c 463 char ebuf[PCAP_ERRBUF_SIZE]; local
495 if (abort_on_misalignment(ebuf, sizeof(ebuf)) < 0)
496 error("%s", ebuf);
541 if (pcap_findalldevs(&devpointer, ebuf) < 0)
542 error("%s", ebuf);
597 if (pcap_findalldevs(&devpointer, ebuf) < 0)
598 error("%s", ebuf);
851 pd = pcap_open_offline(RFileName, ebuf);
853 error("%s", ebuf);
    [all...]
  /external/opencv/cv/src/
cvstereogc.cpp 669 GCEdge* ebuf = (GCEdge*)state->edgeBuf->data.ptr; local
692 ebuf[k].dst = 0;
693 ebuf[k].next = 0;
694 ebuf[k].weight = 0;
743 delta, delta, 0, ebuf, nedges );
746 E += icvAddTerm( var, var1, 0, INFINITY, 0, 0, ebuf, nedges );
759 E += icvAddTerm( var, var1, 0, E0a, Ea0, Eaa, ebuf, nedges );
781 E += icvAddTerm( var, var1, E00, E0a, Ea0, 0, ebuf, nedges );
792 E += icvAddTerm( var, var1, E00, E0a, Ea0, 0, ebuf, nedges );
805 E += icvAddTerm( var, var1, 0, INFINITY, 0, 0, ebuf, nedges )
    [all...]
  /external/ipsec-tools/src/racoon/
crypto_openssl.c 1203 static char ebuf[512]; local
1214 n = snprintf(ebuf + len, sizeof(ebuf) - len,
1218 if (n < 0 || n >= sizeof(ebuf) - len)
1221 if (sizeof(ebuf) < len)
1225 return ebuf;
    [all...]
  /external/qemu/
qemu-char.c 341 char ebuf[15] = "Escape-Char"; local
346 snprintf(ebuf, sizeof(ebuf), "C-%c", term_escape_char - 1 + 'a');
356 chr->chr_write(chr, (uint8_t *)ebuf, strlen(ebuf));
    [all...]
  /ndk/sources/host-tools/make-3.81/
read.c 129 static long readline PARAMS ((struct ebuffer *ebuf));
132 struct ebuffer *ebuf));
306 struct ebuffer ebuf;
313 ebuf.floc.filenm = strcache_add (filename);
314 ebuf.floc.lineno = 1;
341 ebuf.fp = fopen (filename, "r");
348 if (ebuf.fp == 0 && (flags & RM_INCLUDED) && *filename != '/')
354 ebuf.fp = fopen (included, "r");
355 if (ebuf.fp)
386 if (ebuf.fp == 0
303 struct ebuffer ebuf; local
418 struct ebuffer ebuf; local
    [all...]
  /external/chromium_org/third_party/icu/source/test/intltest/
regextst.cpp 164 char *ebuf = (char*)malloc(bufLen); local
165 uprv_eastrncpy((unsigned char*)ebuf, (const unsigned char*)buf, bufLen);
166 uprv_strncpy(buf, ebuf, bufLen);
167 free((void*)ebuf);
    [all...]
  /external/icu4c/test/intltest/
regextst.cpp 176 char *ebuf = (char*)malloc(bufLen); local
177 uprv_eastrncpy((unsigned char*)ebuf, (const unsigned char*)buf, bufLen);
178 uprv_strncpy(buf, ebuf, bufLen);
179 free((void*)ebuf);
    [all...]
  /external/mksh/src/
edit.c 3453 static struct edstate ebuf; variable in typeref:struct:edstate
    [all...]

Completed in 2460 milliseconds