HomeSort by relevance Sort by last modified time
    Searched refs:outbuf (Results 26 - 50 of 102) sorted by null

12 3 4 5

  /external/icu4c/common/unicode/
bytestream.h 137 * This sink will not write more than capacity bytes to outbuf.
146 * Constructs a ByteSink that will write to outbuf[0..capacity-1].
147 * @param outbuf buffer to write to
151 CheckedArrayByteSink(char* outbuf, int32_t capacity);
  /libcore/luni/src/main/java/java/security/
Signature.java 329 * @param outbuf
332 * the index of the first byte in {@code outbuf} to store.
335 * @return the number of bytes stored in {@code outbuf}.
341 * {@code outbuf}.
343 public final int sign(byte[] outbuf, int offset, int len)
345 if (outbuf == null || offset < 0 || len < 0 ||
346 offset + len > outbuf.length) {
352 return engineSign(outbuf, offset, len);
  /external/openssl/crypto/rand/
rand_win.c 258 LPBYTE outbuf; local
265 if (netstatget(NULL, L"LanmanWorkstation", 0, 0, &outbuf) == 0)
267 RAND_add(outbuf, sizeof(STAT_WORKSTATION_0), 45);
268 netfree(outbuf);
270 if (netstatget(NULL, L"LanmanServer", 0, 0, &outbuf) == 0)
272 RAND_add(outbuf, sizeof(STAT_SERVER_0), 17);
273 netfree(outbuf);
  /external/icu4c/test/thaitest/
thaitest.cpp 405 char outbuf[1024]; local
409 printf("%s", u_strToUTF8(outbuf, sizeof(outbuf), &strlength, &bom, 1, &status));
416 printf("%s", u_strToUTF8(outbuf, sizeof(outbuf), &strlength, &chars[prevbreak],
  /external/qemu/distrib/zlib-1.2.3/
gzio.c 62 Byte *outbuf; /* output buffer */ member in struct:gz_stream
115 s->stream.next_out = s->outbuf = Z_NULL;
159 s->stream.next_out = s->outbuf = (Byte*)ALLOC(Z_BUFSIZE);
161 if (err != Z_OK || s->outbuf == Z_NULL) {
246 s->stream.next_out = s->outbuf;
247 if (fwrite(s->outbuf, 1, Z_BUFSIZE, s->file) != Z_BUFSIZE) {
384 TRYFREE(s->outbuf);
575 s->stream.next_out = s->outbuf;
576 if (fwrite(s->outbuf, 1, Z_BUFSIZE, s->file) != Z_BUFSIZE) {
721 if ((uInt)fwrite(s->outbuf, 1, len, s->file) != len)
    [all...]
  /external/libxml2/
HTMLtree.c 408 xmlOutputBufferPtr outbuf; local
416 outbuf = (xmlOutputBufferPtr) xmlMalloc(sizeof(xmlOutputBuffer));
417 if (outbuf == NULL) {
421 memset(outbuf, 0, (size_t) sizeof(xmlOutputBuffer));
422 outbuf->buffer = buf;
423 outbuf->encoder = NULL;
424 outbuf->writecallback = NULL;
425 outbuf->closecallback = NULL;
426 outbuf->context = NULL;
427 outbuf->written = 0
    [all...]
xmlsave.c 2088 xmlOutputBufferPtr outbuf; local
2137 xmlOutputBufferPtr outbuf; local
    [all...]
  /packages/apps/Nfc/nxp/jni/
com_android_nfc_NativeNfcTag.cpp 700 // outbuf is passed into the transceive - it may be pointed to new memory
705 uint8_t *outbuf = NULL; local
740 buf = outbuf = (uint8_t *)e->GetByteArrayElements(data, NULL);
754 outbuf = (uint8_t*)malloc(buflen + 2);
756 memcpy(outbuf, buf, buflen);
757 nfc_insert_crc_a(outbuf, buflen);
779 outbuf = (uint8_t*)malloc(buflen + 2);
781 memcpy(outbuf, buf, buflen);
782 nfc_insert_crc_a(outbuf, buflen);
810 transceive_info.sSendData.buffer = outbuf + offset
    [all...]
  /external/chromium/base/
string_number_conversions.cc 71 STR outbuf(kOutputBufSize, 0);
78 for (typename STR::iterator it = outbuf.end();;) {
80 DCHECK(it != outbuf.begin());
88 DCHECK(it != outbuf.begin());
91 return STR(it, outbuf.end());
  /external/e2fsprogs/intl/
dcigettext.c 886 unsigned char *outbuf; local
895 outbuf = freemem + sizeof (size_t);
910 &outbuf,
911 outbuf + freemem_size - sizeof (size_t),
928 char *outptr = (char *) outbuf;
940 outbuf = (unsigned char *) outptr;
998 outbuf = freemem + sizeof (size_t);
1003 *(size_t *) freemem = outbuf - freemem - sizeof (size_t);
1006 freemem_size -= outbuf - freemem;
1007 freemem = outbuf;
    [all...]
  /external/ipsec-tools/src/racoon/
gssapi.c 523 vchar_t *outbuf; local
561 if (gssapi_gss2vmbuf(hash_out, &outbuf) < 0) {
573 return outbuf;
583 vchar_t *outbuf; local
606 if (gssapi_gss2vmbuf(hash_out, &outbuf) < 0) {
618 return outbuf;
  /system/core/sh/
output.c 243 fmtstr(char *outbuf, size_t length, const char *fmt, ...)
249 strout.nextc = outbuf;
256 outbuf[length - 1] = '\0';
  /hardware/libhardware/include/hardware/
hwcomposer.h 305 /* outbuf is the buffer that receives the composed image for
306 * virtual displays. Writes to the outbuf must wait until
308 * writes to outbuf are complete should be returned in
318 * For physical displays, outbuf will be NULL.
320 buffer_handle_t outbuf; member in struct:hwc_display_contents_1::__anon20699::__anon20701
322 /* File descriptor for a fence that will signal when outbuf is
326 * Will be -1 whenever outbuf is NULL, or when the outbuf can be
  /external/dropbear/libtomcrypt/testprof/
der_tests.c 23 unsigned char strs[10][10], outbuf[128]; local
33 outlen = sizeof(outbuf);
34 if ((err = der_encode_set(list, 3, outbuf, &outlen)) != CRYPT_OK) {
45 if ((err = der_decode_set(outbuf, outlen, list, 3)) != CRYPT_OK) {
81 outlen = sizeof(outbuf);
82 if ((err = der_encode_setof(list, 10, outbuf, &outlen)) != CRYPT_OK) {
92 if ((err = der_decode_set(outbuf, outlen, list, 10)) != CRYPT_OK) {
456 unsigned char bitbuf[10], octetbuf[10], ia5buf[10], printbuf[10], outbuf[256]; local
488 outlen = sizeof(outbuf);
489 DO(der_encode_sequence(&types[x>6?x-7:x], 1, outbuf, &outlen))
    [all...]
  /external/icu4c/extra/uconv/
uconv.cpp 537 buf(NULL), outbuf(NULL), fromoffsets(NULL),
545 outbuf = buf + bufsz;
570 char *buf, *outbuf; member in class:ConvertFile
924 bufp = outbuf;
929 ucnv_fromUnicode(convto, &bufp, outbuf + bufsz,
    [all...]
  /external/qemu/
monitor.c 82 uint8_t outbuf[1024]; member in struct:Monitor
176 qemu_chr_write(mon->chr, mon->outbuf, mon->outbuf_index);
195 mon->outbuf[mon->outbuf_index++] = '\r';
196 mon->outbuf[mon->outbuf_index++] = c;
197 if (mon->outbuf_index >= (sizeof(mon->outbuf) - 1)
    [all...]
  /external/antlr/antlr-3.4/runtime/Python/tests/
t012lexerXML.py 39 output = unicode(lexer.outbuf.getvalue(), 'utf-8')
  /external/icu4c/test/perf/DateFmtPerf/
DateFmtPerf.h 391 char outbuf[500]; local
402 sprintf(outbuf, "%lg", result);
  /external/icu4c/test/intltest/
strtest.cpp 339 SimpleByteSink(char *outbuf) : fOutbuf(outbuf), fLength(0) {}
  /external/quake/quake/src/QW/client/
md4.c 299 void Com_BlockFullChecksum (void *buffer, int len, unsigned char *outbuf)
305 MD4Final ( outbuf, &ctx);
common.h 218 void Com_BlockFullChecksum (void *buffer, int len, unsigned char *outbuf);
  /external/svox/pico/tts/
com_svox_picottsengine.cpp 1464 short outbuf[MAX_OUTBUF_SIZE\/2]; local
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
SignatureSpiTest.java 285 protected int engineSign(byte[] outbuf, int offset, int len)
  /external/speex/libspeex/
preprocess.c 229 spx_word16_t *outbuf; /**< Output buffer (for overlap and add) */ member in struct:SpeexPreprocessState_
471 st->outbuf = (spx_word16_t*)speex_alloc(N3*sizeof(spx_word16_t));
500 st->outbuf[i]=0;
560 speex_free(st->outbuf);
    [all...]
  /external/valgrind/main/mpi/
libmpiwrap.c     [all...]

Completed in 3985 milliseconds

12 3 4 5