HomeSort by relevance Sort by last modified time
    Searched full:outbuf (Results 51 - 75 of 272) sorted by null

1 23 4 5 6 7 8 91011

  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/lib/gconv/
ISO-2022-JP.so 
ISO-2022-CN-EXT.so 
TCVN5712-1.so 
  /external/valgrind/main/none/tests/x86/
x86locked.c 125 static HChar outBuf[1024];
126 // take output that's in outBuf, length as specified, and
130 assert( ((unsigned int)nbytes) < sizeof(outBuf)-1);
131 assert(outBuf[nbytes] == 0);
132 theCRC = crcBytes( (UChar*)&outBuf[0], nbytes, theCRC );
133 if (VERBOSE) printf("SEND %08x %s", theCRC, outBuf);
251 sprintf(outBuf, \
335 sprintf(outBuf, \
437 sprintf(outBuf, \
597 send( sprintf(outBuf,
    [all...]
  /external/wpa_supplicant/
tls_schannel.c 223 SecBufferDesc outbuf; local
240 outbuf.cBuffers = 1;
241 outbuf.pBuffers = outbufs;
242 outbuf.ulVersion = SECBUFFER_VERSION;
248 &outbuf, &sspi_flags_out, &ts_expiry);
253 &outbuf, &sspi_flags_out, &ts_expiry);
326 SecBufferDesc inbuf, outbuf; local
367 outbuf.cBuffers = 1;
368 outbuf.pBuffers = outbufs;
369 outbuf.ulVersion = SECBUFFER_VERSION
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/crypto/
tls_schannel.c 223 SecBufferDesc outbuf; local
240 outbuf.cBuffers = 1;
241 outbuf.pBuffers = outbufs;
242 outbuf.ulVersion = SECBUFFER_VERSION;
248 &outbuf, &sspi_flags_out, &ts_expiry);
253 &outbuf, &sspi_flags_out, &ts_expiry);
326 SecBufferDesc inbuf, outbuf; local
367 outbuf.cBuffers = 1;
368 outbuf.pBuffers = outbufs;
369 outbuf.ulVersion = SECBUFFER_VERSION
    [all...]
  /external/wpa_supplicant_8/src/crypto/
tls_schannel.c 222 SecBufferDesc outbuf; local
239 outbuf.cBuffers = 1;
240 outbuf.pBuffers = outbufs;
241 outbuf.ulVersion = SECBUFFER_VERSION;
247 &outbuf, &sspi_flags_out, &ts_expiry);
252 &outbuf, &sspi_flags_out, &ts_expiry);
324 SecBufferDesc inbuf, outbuf; local
364 outbuf.cBuffers = 1;
365 outbuf.pBuffers = outbufs;
366 outbuf.ulVersion = SECBUFFER_VERSION
    [all...]
  /frameworks/base/media/libstagefright/codecs/aacenc/SampleCode/
AAC_E_SAMPLES.c 33 unsigned char outBuf[1024*8];
228 outData.Buffer = outBuf;
236 outData.Buffer = outBuf;
  /external/icu4c/i18n/
uspoof.cpp 512 static UChar * convertFromUTF8(UChar *outBuf, int32_t outBufCapacity, int32_t *outputLength,
517 UChar *dest = outBuf;
765 UChar *outBuf = smallOutBuf;
785 outBuf, USPOOF_STACK_BUFFER_SIZE, status);
787 outBuf = static_cast<UChar *>(uprv_malloc((skelLengthInUChars+1)*sizeof(UChar)));
788 if (outBuf == NULL) {
794 outBuf, skelLengthInUChars+1, status);
798 outBuf, skelLengthInUChars, status);
804 if (outBuf != smallOutBuf) {
805 uprv_free(outBuf);
    [all...]
  /external/valgrind/main/none/tests/amd64/
amd64locked.c 125 static HChar outBuf[1024];
126 // take output that's in outBuf, length as specified, and
130 assert( ((unsigned int)nbytes) < sizeof(outBuf)-1);
131 assert(outBuf[nbytes] == 0);
132 theCRC = crcBytes( (UChar*)&outBuf[0], nbytes, theCRC );
133 if (VERBOSE) printf("SEND %08x %s", theCRC, outBuf);
266 sprintf(outBuf, \
357 sprintf(outBuf, \
473 sprintf(outBuf, \
690 send( sprintf(outBuf,
    [all...]
  /packages/apps/Nfc/jni/
com_android_nfc_NativeNfcTag.cpp 713 // outbuf is passed into the transceive - it may be pointed to new memory
718 uint8_t *outbuf = NULL; local
753 buf = outbuf = (uint8_t *)e->GetByteArrayElements(data, NULL);
767 outbuf = (uint8_t*)malloc(buflen + 2);
769 memcpy(outbuf, buf, buflen);
770 nfc_insert_crc_a(outbuf, buflen);
792 outbuf = (uint8_t*)malloc(buflen + 2);
794 memcpy(outbuf, buf, buflen);
795 nfc_insert_crc_a(outbuf, buflen);
823 transceive_info.sSendData.buffer = outbuf + offset
    [all...]
  /external/apache-harmony/archive/src/test/java/org/apache/harmony/archive/tests/java/util/zip/
InflaterInputStreamTest.java 281 byte[] outBuf = new byte[530];
284 result = iis.read(outBuf, 0, 5);
291 iis.read(outBuf, -1, 10);
304 byte[] outBuf = new byte[530];
308 iis.read(outBuf, 0, 5);
321 byte[] outBuf = new byte[530];
CheckedInputStreamTest.java 59 byte outBuf[] = new byte[100];
84 checkIn2.read(outBuf, 0, 10);
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/JAJP/
KanaConverter.java 609 * @param outBuf The output string
612 private boolean createCandidateString(String input, HashMap<String,String> map, StringBuffer outBuf) {
613 if (outBuf.length() > 0) {
614 outBuf.delete(0, outBuf.length());
621 outBuf.append(convChar);
  /external/libxml2/
HTMLtree.c 399 xmlOutputBufferPtr outbuf; local
407 outbuf = (xmlOutputBufferPtr) xmlMalloc(sizeof(xmlOutputBuffer));
408 if (outbuf == NULL) {
412 memset(outbuf, 0, (size_t) sizeof(xmlOutputBuffer));
413 outbuf->buffer = buf;
414 outbuf->encoder = NULL;
415 outbuf->writecallback = NULL;
416 outbuf->closecallback = NULL;
417 outbuf->context = NULL;
418 outbuf->written = 0
    [all...]
  /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);
  /external/svox/pico/lib/
picopr.c 291 picoos_uint8 outBuf[OUT_BUF_SIZE]; /* internal output buffer */
292 picoos_uint16 outReadPos; /* next pos to read from outBuf */
293 picoos_uint16 outWritePos; /* next pos to write to outBuf */
    [all...]
  /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/zlib/
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...]
  /build/tools/zipalign/
ZipFile.cpp 749 unsigned char* outBuf = NULL;
759 outBuf = new unsigned char[kBufSize];
760 if (inBuf == NULL || outBuf == NULL) {
774 zstream.next_out = outBuf;
843 LOGV("+++ writing %d bytes\n", (int) (zstream.next_out - outBuf));
844 if (fwrite(outBuf, 1, zstream.next_out - outBuf, dstFp) !=
845 (size_t)(zstream.next_out - outBuf))
848 (int) (zstream.next_out - outBuf));
852 zstream.next_out = outBuf;
    [all...]
  /frameworks/base/tools/aapt/
ZipFile.cpp 749 unsigned char* outBuf = NULL;
759 outBuf = new unsigned char[kBufSize];
760 if (inBuf == NULL || outBuf == NULL) {
774 zstream.next_out = outBuf;
843 LOGV("+++ writing %d bytes\n", (int) (zstream.next_out - outBuf));
844 if (fwrite(outBuf, 1, zstream.next_out - outBuf, dstFp) !=
845 (size_t)(zstream.next_out - outBuf))
848 (int) (zstream.next_out - outBuf));
852 zstream.next_out = outBuf;
    [all...]
  /external/zlib/examples/
gun.c 161 unsigned char outbuf[SIZE]; /* output buffer */ variable
260 outbuf[0] = (unsigned char)final; /* write first decompressed byte */
280 if (outcnt && out(&outd, outbuf, outcnt)) {
281 strm->next_in = outbuf; /* signal write error */
351 outbuf[outcnt++] = match[--stack];
352 if (out(&outd, outbuf, outcnt)) {
353 strm->next_in = outbuf; /* signal write error */
360 outbuf[outcnt++] = *--p;
  /frameworks/base/core/tests/coretests/src/com/android/internal/util/
BitwiseStreamsTest.java 40 byte[] outBuf = outStream.toByteArray();
41 BitwiseInputStream inStream = new BitwiseInputStream(outBuf);
  /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);
  /ndk/sources/host-tools/sed-4.2.1/m4/
iconv.m4 168 size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);
173 am_cv_proto_iconv="extern size_t iconv (iconv_t cd, $am_cv_proto_iconv_arg1 char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);"])

Completed in 1153 milliseconds

1 23 4 5 6 7 8 91011